码迷,mamicode.com
首页 > 移动开发 > 详细

iOS中xib与storyboard各种加载

时间:2019-08-28 13:19:49      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:option   cell   注册   init   main   iat   加载   uiview   board   

xib 加载自定义View
UIView *view = [[NSBundle mainBundle] loadNibNamed:@"MyView" owner:self options:nil][0];    

 

xib 加载自定义控制器
UIViewController *vc = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];

 

storyboard 加载自定义控制器
 UIStoryboard*storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
 UIViewController*vc = [storyboard instantiateInitialViewController];

 

xib 加载自定义cell
//第一步在控制器生命周期中注册
[self.msgTableView registerNib:[UINib nibWithNibName:@"RTJFMyMsgTableViewCell" bundle:nil] forCellReuseIdentifier:cellID];

//第二步在表格数据源代理中返回
 RTJFMyMsgTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
    if (cell == nil) {
        cell = [[RTJFMyMsgTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
    }
    return cell;

 

iOS中xib与storyboard各种加载

标签:option   cell   注册   init   main   iat   加载   uiview   board   

原文地址:https://www.cnblogs.com/yyyyyyyyqs/p/11423068.html

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