如何在没有 UITabBarController 的情况下使用 UITabBar
How use UITabBar without UITabBarController
我需要将 UITabBar 与 UITabBarItem 一起使用,但我需要在故事板中不使用 UITabBarController 的情况下执行此操作。
我在 firstViewController
中添加了一个 TabBar
和一个 TabBarItem
,但我无法在我的 class 中触发或添加事件方法。
正确的做法是什么?有人可以概述下一步要采取的步骤吗?
谢谢。
To implement particular behaviour on UI element you need to implement respective protocols
在IOS
中实现协议的语法
@interface myViewController : UIViewController<UITabBarDelegate>
这样您就可以实现与 UITabBar
一起工作的方法
有关详细信息,我希望您阅读官方文档 https://developer.apple.com/library/ios/documentation/General/Conceptual/CocoaEncyclopedia/DelegatesandDataSources/DelegatesandDataSources.html
我需要将 UITabBar 与 UITabBarItem 一起使用,但我需要在故事板中不使用 UITabBarController 的情况下执行此操作。
我在 firstViewController
中添加了一个 TabBar
和一个 TabBarItem
,但我无法在我的 class 中触发或添加事件方法。
正确的做法是什么?有人可以概述下一步要采取的步骤吗?
谢谢。
To implement particular behaviour on UI element you need to implement respective protocols
在IOS
中实现协议的语法@interface myViewController : UIViewController<UITabBarDelegate>
这样您就可以实现与 UITabBar
有关详细信息,我希望您阅读官方文档 https://developer.apple.com/library/ios/documentation/General/Conceptual/CocoaEncyclopedia/DelegatesandDataSources/DelegatesandDataSources.html