In one of my apps, I want to display an action sheet from a tab bar item in a tabbar controller and this action sheet should be accessible through out anywhere, if I click that tab bar item. I afraid this can be done, as the tab bar is tightly coupled with its view controllers. If anyone has any work around, it will be really helpful.

Thanks.

link|improve this question

42% accept rate
feedback

3 Answers

UIActionSheet has a method called showFromTabbar:

link|improve this answer
feedback

How about creating a parentView controller of TabBarController and present actionSheet from that viewController. Basically that View Controller holds nothing except tabBarController itself.

link|improve this answer
Your idea seems striking, but would you mind posting some example code, that would be really helpful. – Kumar Jul 19 '11 at 9:30
@manoj sorry buddy but I cannot create a sample right now. You will have to do it yourself otherwise you will not learn much. Try it yourself then ask if you stuck. First try it yourself before you ask question. – Rahul Vyas Jul 19 '11 at 9:44
feedback

Use,

[myActionSheet showFromTabBar:self.tabBarController.tabBar];

in the view controller which is inside a tab bar controller.

link|improve this answer
but where should I call this method? – Kumar Jul 19 '11 at 9:35
I guess, you have to have a centralize class which should own and init the tab bar controller, if you want to share the action sheet for all the tab bars. Rahul points out similar thing. Otherwise, you can call this method when you need to show it, in your view controller of the corresponding tab bar. – karim Jul 19 '11 at 10:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.