Reputation: 889
I found in my ipod touch and in iphone simulator, the button "return" only respond when touch area inside red rectangle, other places not respond
What's the problem?
Upvotes: 1
Views: 291
Reputation: 56
There is no problem in your actionsheet.
its by default you have to push at upper side
Upvotes: 0
Reputation: 11543
Are you using a tabbar controller? The problem is that you are calling actionsheet in a subview and it's not fullscreen. I had the same problem and I found the solution in this answer:
iphone - weird bug between UIActionSheet and UITabBar
[actionSheet showInView:[UIApplication sharedApplication].keyWindow];
Upvotes: 3