Search code examples
iosiphoneobjective-cuitabbarcontrolleruiactionsheet

How can I show an actionsheet above the Tab bar?


IS it possible to display my action sheet above the Tab bar? If yes how can I do? Please advise me with an example?

I've tried the following code: [actionsheet showFromTabBar:self.tabBarController.tabBar]; but it doesn't reflect.

Note: I've set Tab Bar controller as Root Controller of my App.


Solution

  • If you want to show action sheet above tab bar then just use below code

    [actoinsheet showInView:[[[UIApplication sharedApplication] delegate] window]];