如何在iPhone中的UIViewController中保留一个tabbar?

时间:2012-10-25 08:28:03

标签: iphone xcode4 uitabbarcontroller uitabbar

我非常擅长iPhone开发并且在某一点上崭露头角。我有一个UIViewController,我在其中放置一个标签栏和标签栏项目(搜索,登录)..现在启动应用程序怎么样?我选择了搜索tabbaritem吗?。如果我点击登录它必须重定向到另一个UIViewController(登录)。但是在UIViewController中我不需要tabbar。如何点击登录时可以使标签栏项目响应并重定向到某些其他观点......?

2 个答案:

答案 0 :(得分:0)

从你的问题。很明显,你不需要tabbar。而是添加tabbarcontroller。

检查我附上的图像。这将向您展示您应该遵循的内容。 You just need to add tabbarcontroller from nib objects. Then add your viewcontrollers for a given tab

让我知道。如果有什么不清楚的话。

享受编程。

答案 1 :(得分:0)

单击login,请按照此代码从LoginViewController开始,不使用tabBar启动应用程序..

YourAppDelegate *appDelegate = (YourAppDelegate *)[[UIApplication sharedApplication]delegate];

appDelegate.window.rootViewController = LoginViewController;