面对UITabar项目中的问题取消选择

时间:2011-03-31 15:39:32

标签: iphone uikit uiviewcontroller uitabbarcontroller

我在使用uitabbaritem时遇到了一些问题。 我已经以编程方式创建了uitabbaritem。 我想要的是默认情况下不应该选择任何tabbaritems。 这是我使用的一些代码。

UITabBarController *tabBarController = [[UITabBarController alloc] init];
tabBarController.view.frame = CGRectMake(0, 0, 320, 460);

// Set each tab to show an appropriate view controller
[tabBarController setViewControllers:
 [NSArray arrayWithObjects:landingController,aboutUsController, featuresController,faqController, contactUsController, nil]];

任何一个有想法我怎么能摆脱它? 任何帮助将不胜感激。谢谢。

1 个答案:

答案 0 :(得分:0)

要显示不属于常规导航的页面,请使用[UIViewController presentModalViewController:animated:],如下例所示:

在将appBarController添加到活动视图/窗口后,app-delegate中的某个位置;

[tabBarController presentModalViewController:landingController animated:NO];