UIActionSheet cancel button strange behaviour
Instead of passing the current view controller’s view to the action sheet, use the showFromTabBar: method of UIActionSheet. The Right Way This will give the correct tappable area: [actionSheet showFromTabBar:self.tabBarController.tabBar]; The Wrong Way This will put the tappable area in the wrong place (if you’re using a tab bar or toolbar): [actionSheet showInView:self.view]; If you’re … Read more