1

I have a UITabBarController with UITabBarItems . I add a button on top of that which works fine until you use bottomBarHide method. Then the button appears underneath the tab bar.

How do I fix this?

Amit Verma
  • 40,709
  • 21
  • 93
  • 115
cdub
  • 24,555
  • 57
  • 174
  • 303

1 Answers1

0

bringSubviewToFront should work:

[parentView bringSubviewToFront:childView];
dminones
  • 2,236
  • 20
  • 21