ActionSheet被tabbar挡住解决方案

一般的ACTIONSHEET的显示方法都是

[actionSheet showInView:self.view];

这种方法有局限,就是ACTIONSHEET的cancel button会被tabbar挡住一半。

解决方法:

[actionSheet showInView:self.view.window];

在整个窗体上显示actionsheet,那优先级就高了。自然不会被tabbar挡住了

你可能感兴趣的:(iphone,button)