如何将 UIButton 保持在 UITabBar 的顶部(如 z-index)

How do you keep a UIButton on top (like a z-index) of a UITabBar

我有一个 UITabBarControllerUITabBarItems 。我在上面添加了一个按钮,在您使用 bottomBarHide 方法之前效果很好。然后该按钮出现在选项卡栏下方。

我该如何解决这个问题?

bringSubviewToFront 应该工作:

[parentView bringSubviewToFront:childView];