标签栏控制器中的模态视图
在我的应用程序中,我有一个选项卡栏控制器。当我单击选项卡栏项目时,需要显示一个视图(小尺寸)。我认为这是通过模态视图控制器实现的。还有其他方法可以做到这一点吗?任何帮助将不胜感激。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您滥用了 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
http://developer.apple.com/library/ios/#DOCUMENTATION/UserExperience/Conceptual/MobileHIG/UIElementGuidelines/UIElementGuidelines.html#//apple_ref/doc/uid/TP40006556-CH13-SW29
Hope this helps,
Vincent