UIActionSheet is not showing separator on the last item on iOS 7 GM

I think ActionSheet requires a cancel button.So you can add the cancel button title.

Another way is: Specify actionSheet’s cancelButtonIndex.

For example,in your case, you can add a “Cancel” in otherButtonTitles at index 4 and then specifiy
actionSheet.cancelButtonIndex = 4.

Leave a Comment