标签栏控制器中的模态视图

发布于 2024-11-04 17:18:20 字数 97 浏览 0 评论 0原文

在我的应用程序中,我有一个选项卡栏控制器。当我单击选项卡栏项目时,需要显示一个视图(小尺寸)。我认为这是通过模态视图控制器实现的。还有其他方法可以做到这一点吗?任何帮助将不胜感激。

In my application i have a tab Bar controller. when i click a tab bar item a view is need to display (in small size) . i think it is acheived through modal view controller. Is there any other ways to do this? Any help would be appreciated.

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

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

发布评论

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

评论(1

不再见 2024-11-11 17:18:20

我认为您滥用了 UITabBarController 并造成了复杂的情况。选项卡栏控制器用于显示 UIViewController 列表,您不应该使用它来显示小尺寸的 UIView。
单击选项卡栏项目后也不应显示模式视图。

此外,您所描述的内容违反了Apple指南,可能会导致您的应用程序被拒绝。

您可以在“iOS人机界面指南”上找到信息,特别是关于TabBar的使用的章节

不要使用标签栏来给用户
作用于元素中的控件
当前模式或屏幕。

http://developer.apple.com/library/ios/#DOCUMENTATION/UserExperience/Conceptual/MobileHIG/UIElementGuidelines/UIElementGuidelines.html#//apple_ref/doc/uid/TP40006556-CH13-SW29

希望这有帮助,
文森特

I think you are misusing the UITabBarController and creating a complex situation. A tab Bar Controller is made for displaying a list of UIViewControllers, you shouldn't use it to display a UIView in small size.
You shouldn't display a modal View either after a click on a tab bar item.

Besides what you describe is contrary to Apple guidelines and might be cause of rejection of your app..

You can find informations on the "iOS Human Interface Guidelines", especially the chapter on the usage of the TabBar

Don’t use a tab bar to give users
controls that act on elements in the
current mode or screen.

http://developer.apple.com/library/ios/#DOCUMENTATION/UserExperience/Conceptual/MobileHIG/UIElementGuidelines/UIElementGuidelines.html#//apple_ref/doc/uid/TP40006556-CH13-SW29

Hope this helps,
Vincent

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