如何声明 Tabbar 项的操作?
我在 nib 文件中拖动了一个选项卡栏。现在我想在单击选项卡栏项目时打开新视图。在不使用选项卡栏控制器的情况下,我想使用选项卡栏和选项卡栏项目上的操作。对于选项卡栏,我之前说过选项卡栏我拖动它,接下来是如何定义或声明选项卡栏项目上的操作?
- (void)viewDidLoad {
self.title = @"J.F. 's Library";
[super viewDidLoad];
}
I have drag a Tab-Bar in nib file. Now i want to open new view when click on tab bar item. Without using tab-Bar controller i want to use tab bar and action on tab bar item. For tab bar i said earlier tab-bar i drag that and next is that How do define or declare action on tab bar item?
- (void)viewDidLoad {
self.title = @"J.F. 's Library";
[super viewDidLoad];
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
选项卡栏是 UITabBarController 的子属性。如果不使用此选项卡控制器,则无法在其中设置选项卡栏。
如果您在 NIB 文件中设置部分成功,则使用 SELECTOR 方法来执行选项卡栏的操作。
Tab bar is the sub property of UITabBarController.. Without use of this tabbarController you cAN not set tab bar in it.
IF you partially success for set in NIB file than use SELECTOR method for action of Tab-Bar..