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

用xib自定义UIView--iOS

时间:2016-08-13 12:49:34      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:

首先新建一个空的xib文件:

技术分享

然后在xib中自定义视图(添加自己想要的其它视图):

技术分享

要写好约束, 创建一个继承uiview的类和他关联,然后就可以调用了.

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    NSArray *nibContents = [[NSBundle mainBundle] loadNibNamed:@"HeadView" owner:nil options:nil];
    // Find the view among nib contents (not too hard assuming there is only one view in it).
    HeadView *headView = [nibContents lastObject];
    headView.frame = CGRectMake(0, 0, 300, 200);
    //headView.backgroundColor = [UIColor blueColor];
    _tableView.tableHeaderView = headView;
}

 

用xib自定义UIView--iOS

标签:

原文地址:http://www.cnblogs.com/mafeng/p/5767725.html

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