获取另一个 tabBar 项目的实例
我试图在选项卡(1)上设置标签(0)的属性。
这就是我想在标签(1)上做的事情。但是它正在遇到崩溃
FirstTabViewController *firstTabVC = (FirstTabViewController*)[[self.tabBarController viewControllers] objectAtIndex:0];
firstTabVC.property = newProperty;
[uinavigationController setProperty:]:未识别的选择器已发送到实例0x5A25A80
TAB(0)是否有帮助。我已经合成了选项卡上的属性(0)
I am trying to set a property of tab(0) at tab(1).
This is what I am trying to do at tab(1). But it's getting a crash
FirstTabViewController *firstTabVC = (FirstTabViewController*)[[self.tabBarController viewControllers] objectAtIndex:0];
firstTabVC.property = newProperty;
[UINavigationController setProperty:]: unrecognized selector sent to instance 0x5a25a80
tab(0) has a navigationController if that helps. I have synthesize the property on tab(0)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终这样做了。
I ended up doing this.