iOS - 从另一个类调用一个类
我想从类名“ROOTVIEWCONTROLLER”调用类名 TabViewController 我想这样做是因为我想动态地制作 TabBarController。所以我想处理类名 TabViewController 中的所有与选项卡相关的活动所以从 rootviewcontroller 我想访问处理选项卡的 TabViewController 的方法。 谁能告诉我如何做到这一点。 我在 rootviewcontroller 中编写代码来执行此操作
I want to call class name TabViewController from class name "ROOTVIEWCONTROLLER"
I want to do this because I want to make TabBarController dynamically. So I want to handle all tab related activity in class name TabViewController So from rootviewcontroller I want to access method of TabViewController which handles the tab.
Can any one tell me how it can be done.
And where I write the code in rootviewcontroller to do this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 rootviewcontroller 中创建 tabviewcontroller 对象并推送 tabviewcontroller 。
create object of tabviewcontroller in the rootviewcontroller and push the tabviewcontroller .
如果您只是想获取 tabbarcontroller 的实例,一种选择是使用 self.tabBarController。
One option is to use the self.tabBarController if you are just trying to get an instance of the tabbarcontroller.