views:

31

answers:

0

Hi folks!

I have been having this problem which has costed me lots of time. I am still lost..

This is something I am seeking to do (Refer to the "Main Page" pic): http://www.netbanker.com/2009/04/mastercard_launches_atm_hunter_iphone_app.html

I want an Actionsheet to rise from the TabBar, without disabling it.

I have tried many different ways but I am unable to do so. Below are 2 codes I have tried.

UIActionSheet *actionSheet = [[UIActionSheet alloc]initWithTitle:@"" delegate:self..

[actionSheet showInView:self.view];

Doesn't work -> Shows the ActionSheet on top of the TabBar but 'blacking' it off (So, I can't click on the buttons)

[actionSheet showFromTabBar:self.tabBarController.tabBar];

Doesn't work as well -> Shows the ActionSheet infront of the TabBar and not on top of it.

What's wrong?