iphone:TabBarController 顶部的按钮/图像?
在“照片”应用程序的“相机胶卷”部分中,您可以单击右上角的按钮来编辑照片。这用三个新按钮替换了底部选项卡栏。
我想做类似的事情,但我无法让我的按钮位于选项卡栏的顶部。有没有办法指定图层顺序?或者我需要做一些不同的事情吗?
When in the Camera Roll section of the Photos app, you can click the top right button to edit the photos. This replaces the bottom tab bar with three new buttons.
I would like to do something similar, but I cannot get my buttons to be on TOP of the tab bar. Is there a way to specify the layer order? Or do I need to do something different?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会添加一个新的 UIView。我会将其添加到标签栏所在的视图中(例如 UIWindow)。从那里您可以使用 -bringViewToFront (或类似的东西)。这样您就可以控制 UITabBarController 视图前面的内容。
I would add a new UIView. I would add it to the view your tab bar is in (like, let's say UIWindow). From there you can use -bringViewToFront (or something similar). That way you will have control over what is in front of the UITabBarController's view.