Thursday, September 16, 2010

Realise that you cannot tap on the last button for UIActionSheet? No fear.

I have this problem and after google. change the following

[menu showInView:self.view];

to

[menu showInView:[[[UIApplication sharedApplication] windows] objectAtIndex:0]];

The main reason is the tabcontroller will block 65% of the bottom view. although you cant see it, it is there. All thanks to the following blog.


http://runmad.com/blog/2010/04/uitabbarcontroller-and-uiactionsheet-65-percent-less-hit-point/

No comments:

Post a Comment