iOS TabBarController 问题
TabBar将是关于2个问题。我使用 TabBar 和 NavigationController 的组合。如以下链接。
问题 1:
我想出现在另一个 ViewController 的 TabBar 之前。这里要做几项检查。 (例如,Facebook 登录)如果满足先决条件,选项卡栏将可见。我该怎么办?
问题2:
TabBar 屏幕图标出现在第一个TabBar 的中间。下面的代码顺序也会影响TabBarItem的顺序。
self.tabBarController.viewControllers = [NSArray arrayWithObjects: viewController1, viewController2, nil];
谢谢。
奥坎·沙辛
TabBar will be about 2 question. I am using a combination of a TabBar and NavigationController. As the following link.
Question 1:
I would like to appear before a TabBar to another ViewController. Several checks are here to do. (For example, Facebook login) If the prerequisites are met, tabbar will be visible. How do I do?
Question 2:
TabBar screen icon that appears in the middle of the first TabBar want it to be. The following code sequence also affects the order of TabBarItem.
self.tabBarController.viewControllers = [NSArray arrayWithObjects: viewController1, viewController2, nil];
Thank you.
Okan Sahin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于那些有同样问题的人:
我正在使用 Xcode 4.2。我创建了选项卡式应用程序。
答案 1:
对于加载屏幕,
我创建了一个新的 ViewController。
AppDelegate.m
LoadingViewController.h
LoadingViewController.m
答案 2:
最诚挚的问候
Okan Sahin
For those who have the same problem:
I'm using Xcode 4.2. I have created Tabbed App.
Answer 1:
For loading screen,
I created a new ViewController.
AppDelegate.m
LoadingViewController.h
LoadingViewController.m
Answer 2:
Best regards
Okan Sahin