码迷,mamicode.com
首页 > 其他好文 > 详细

在UIViewController中添加UITabBar

时间:2014-10-09 18:58:17      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   sp   div   on   log   

在一个View中单独添加 UITabBar,

但是时不时的就报错。

经查询:原因是因为在另一个view没有加载完时就把含有TabBar的View加载了,正确的时放在 viewDidAppear:方法中。

错误代码:

// 错误代码

// Main Controller 
@implementation MainViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    HomeViewController *homeViewController =   [[HomeViewController alloc] init];
    // 此时呈现包含UITabBar的控制器
    [self presentViewController:homeViewController animated:NO completion:nil];
}


// 正确代码
-(void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    HomeViewController *homeViewController = [[HomeViewController alloc] init];
    [self presentViewController:homeViewController animated:NO completion:nil];
}

 

在UIViewController中添加UITabBar

标签:style   blog   color   io   ar   sp   div   on   log   

原文地址:http://www.cnblogs.com/1oo1/p/4013919.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!