访问选项卡栏控制器中的选项卡元素并更改值

发布于 2024-12-12 09:36:56 字数 354 浏览 0 评论 0原文

如何访问选项卡栏控制器中的元素并更改其值?例如,我想访问选项卡栏控制器中的特定视图控制器并更改视图控制器中的属性。被这个问题困扰了一段时间。我用笔尖名称调用了选项卡栏 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

混浊又暗下来 2024-12-19 09:36:56
UIViewController *viewController = [newTabBar.viewControllers objectAtIndex:0];
UIViewController *viewController = [newTabBar.viewControllers objectAtIndex:0];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文