应用程序中任意位置的持久视图
我对 Objective-C 还很陌生,正在开发一个网络广播应用程序。
我的应用程序由 TabBarController 中包含的一些 NavigationController 组成。
我想制作一个始终位于 TabBar 上方的视图。 (它将包含音频播放器控件,并且必须可以在应用程序中的任何位置访问)
最好的方法是什么?
谢谢!
SQ;p
I'm pretty new to Objective-C and I'm working on a webradio app.
My app is composed of some NavigationControllers included in a TabBarController.
I want to make a View wich would stay just above the TabBar ALL THE TIME. (it will contain the audio player controls and must be accessible anywhere in the app)
What would be the best way to do so?
Thanks!
SQ;p
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将视图添加为 UITabBarController 视图属性:
这会在 UITabBarController (m_tabBarController) 中每个选项卡的内容上添加 UILabel blah。
在您的应用程序委托实现中,您将需要:
因此,在需要更新工具栏的视图控制器中,您可以获取应用程序委托,获取 yourToolbar 属性并在其上设置属性:
You need to add your view as a subview of the UITabBarController view property:
This adds the UILabel blah over the content for every tab in the UITabBarController (m_tabBarController).
In your app delegate implementation you will need:
So in your view controllers that need to update the toolbar, you can get hold of the app delegate, grab the yourToolbar property and set attributes on it: