UITabar 项目取消选择时面临问题

发布于 2024-10-28 20:56:42 字数 511 浏览 2 评论 0原文

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

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]];

任何人都知道我怎样才能摆脱它??? 任何帮助将不胜感激。谢谢。

I am having some problems with uitabbaritem.
I have created uitabbaritem programmatically.
And what I want is by default none of the tabbaritems should be selected.
Here is some of the code which I used.

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]];

Any one having idea How can I get rid of it???
Any help would be appreciated.Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

望她远 2024-11-04 20:56:42

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

在应用程序委托中的某个位置,在将 tabBarController 添加到活动视图后立即/窗户;

[tabBarController presentModalViewController:landingController animated:NO];

For showing a page that shall not be part of the regular navigation, use [UIViewController presentModalViewController:animated:] like this example:

Somewhere within your app-delegate, right after adding your tabBarController to the active view/window;

[tabBarController presentModalViewController:landingController animated:NO];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文