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

UINib xib加载

时间:2014-07-25 16:31:51      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:文件   io   for   re   c   ar   table   ui   

1.加载RowView.xib文件,创建Objects下面的所有控件:

    NSArray *views = [[NSBundle mainBundle] loadNibNamed:@"RowView" owner:nil options:nil];    

2.取出xib中的第一个子控件:

    UIView *rowView = views[0];    

3.tableview中cell

    NSString *identify = @"goodslistcell";

    cell = [tableView dequeueReusableCellWithIdentifier:identify];

    if (!cell) {

        UINib *nib = [UINib nibWithNibName:@"SMTGoodInfoCell" bundle:nil];

        [tableView registerNib:nib forCellReuseIdentifier:identify];

        cell = [tableView dequeueReusableCellWithIdentifier:identify];

    }

UINib xib加载,布布扣,bubuko.com

UINib xib加载

标签:文件   io   for   re   c   ar   table   ui   

原文地址:http://www.cnblogs.com/ldc529/p/3867859.html

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