访问选项卡栏控制器中的选项卡元素并更改值
如何访问选项卡栏控制器中的元素并更改其值?例如,我想访问选项卡栏控制器中的特定视图控制器并更改视图控制器中的属性。被这个问题困扰了一段时间。我用笔尖名称调用了选项卡栏 init 并初始化了选项卡栏。现在我需要知道如何访问其中的一个视图。我尝试过,
UITabBarController *newTabBar = [[UITabBarController alloc]initWithNibName:@"PlaceTabBarControllers" bundle:nil];
[newTabBar.selectedViewController setView:listViewController.view];
但这不起作用。
How do you access an element in a tab bar controller and change its value? For instance i want to access a particular view controller in a tab bar controller and change a property in the view controller. Been stuck with this for a while. I have called tab bar init with nib name and initliased the tab bar. Now i need to know how to access one view in it. I tried
UITabBarController *newTabBar = [[UITabBarController alloc]initWithNibName:@"PlaceTabBarControllers" bundle:nil];
[newTabBar.selectedViewController setView:listViewController.view];
but this doesnt work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)