I have this problem:
here is my code:
UIActionSheet *popupQuery = [[UIActionSheet alloc] initWithTitle:@"Share the race" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Send with mail" otherButtonTitles:nil];
popupQuery.actionSheetStyle = UIActionSheetStyleBlackTranslucent;
[popupQuery showInView:self.view];
[popupQuery release];
and everything seems ok, the 2 buttons are showed right, the “send with mail” button is ok, but the cancel catch the click only on the upper side…
here a shot that illustrate the situation:

how can I solve this?
thanks:)
My guess is that the bottom portion of the
UIActionSheetextends beyond the bounds of the view, and so doesn’t respond to touches.To test this theory, add another button and see if all upper buttons work fine but the bottom button still exhibits this behavior.
To fix this problem, make sure the view extends to the bottom of the screen. If you have a tabBar in your app, that’s going to be my suspect for the problem. You could use
showFromTabBar:if you want the sheet above the tabBar, orshowFromToolbar:to show it from a toolBar.If you don’t have a bottom bar, then I’m wrong and have no idea.