iPhone:删除工具栏
我正在开发一个 iPhone 应用程序。 我有一个控制器说“StepMopdeView”。我在此屏幕上显示了一个工具栏 使用语句 [self.parentViewController.view addSubview:navigateToolBar];
我希望工具栏显示在这个屏幕上,但它显示在所有屏幕上。 我不希望此工具栏显示在任何其他屏幕上。我正在尝试执行此操作,但无法实现。任何人都可以指导我如何做到这一点吗?
谢谢, 约格什·乔杜里
I am developing an Iphone application.
I have a Controller say "StepMopdeView".I have displayed a toolbar on this screen
using statement [self.parentViewController.view addSubview:navigateToolBar];
I want the toolbar to be displayed on this this screen but it is displayed on all the screens.
I dont want this toolbar to be displayed on any other screens.I am trying to do this but not able to achieve it.Can any one please guide me regarding how can i do it?
Thanks,
Yogesh Chaudhari
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在创建工具栏的 viewController 的
viewWillDisappear:
方法中调用[navigateToolBar setHidden: YES];
即可。simply call
[navigateToolBar setHidden: YES];
in theviewWillDisappear:
method of the the viewController that created the toolbar.