从 TabBarController 的 viewController 之一中添加视图控制器?
我是 iPhone/iPad 开发人员的新手。
我正在使用 UITabBarController
开发一个应用程序。
我创建了一个 tabbarcontroller 类,在其中通过 NIB 文件实现了一个 UITabBarController 对象。
有 4 个选项卡:登录页面、类别页面、关于我们页面、设置页面。
我想在以编程方式登录登录页面后在 tabbarcontroller 中添加注销选项卡,当用户单击注销选项卡时,它会返回主/登录屏幕,并且注销选项卡将消失。
因此,我需要一个代码片段来在其 UIViewController
内的 UITabBarController
中添加 TabBarItem
。
先感谢您
I am new to iPhone/iPad Developer.
I am developing a application using UITabBarController
.
I have created a tabbarcontroller class in which I have implemented a UITabBarController
object through NIB file.
There are 4 tabs : LoginPage, Category Page, About Us Page, Setting Page.
I want to add logout tab in tabbarcontroller after login in Login Page by programmatically and when user will click to logout tab then it back to home/login screen and logout tab will eliminate.
So I need a code snippet to add TabBarItem
in UITabBarController
within its UIViewController
.
Thank you in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅-[UITabBarController setViewControllers:animated:]。在 iPhone 上,它只会显示四个选项卡,但您应该能够删除“登录页面”选项卡并将“注销”选项卡放在其位置,然后在注销后切换回来。
See -[UITabBarController setViewControllers:animated:]. On the iPhone, it will only display four tabs, but you should be able to remove the Login Page tab and put the Logout tab in its spot, then switch back after a logout.