tags:

views:

111

answers:

3
+1  A: 

Add your view with button in the tab bar view and use either one of these

– bringSubviewToFront:

– insertSubview:aboveSubview:

to put it above all and check how many pixels you need to position your button so that it does not get above the tabs.

CiNN
+2  A: 

I would suggest sub-classing the tabbar to include the new view. That way you do not have to worry about a tab overlaying the view. All your resizing should be done automatically and you will never accidentally hide a component.

You can also have the controller also look after the button and view that you add. you would just need to replace the tabbar in the tabbarviewcontroller to be your one.

Bluephlame
A: 

You could also add it at the window level.

Lounges