以编程方式切换 UItabbarcontroller 索引和索引定制
从 UItabbarcontroller 的第一个视图控制器内的按钮,我想以编程方式将选项卡栏控制器切换到第二个选项卡索引。
self.tabBarController.selectedViewController = [self.tabBarController.viewControllers objectAtIndex:1];
我还想更改 UILabel 的文本,它位于第二个视图控制器的 xib 内。我怎样才能做到这一点?
当我访问 selectedViewController 的 IBOutlet 时,全部为空。
From a button inside first viewcontroller of UItabbarcontroller, I want to switch tabbar controller programatically to a second tab index.
self.tabBarController.selectedViewController = [self.tabBarController.viewControllers objectAtIndex:1];
I also want to change the text of UILabel, which is within xib of second viewcontroller. How can I do that?
When I access the selectedViewController's IBOutlet there are all null.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用这个方法:
1:
//用于导航
2:
设置标签:
这可能会帮助你...
Use this method :
1:
//for navigation
2:
set label by :
This may help you...