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

加载Nib的2种方法

时间:2015-08-04 10:51:11      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:

方法1:

      NSArray *objects = [[NSBundle mainBundle] loadNibNamed:@"flowerCell" owner:self options:nil];

      cell = objects[0];

方法2:

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

      NSArray *objects = [nib instantiateWithOwner:nil options:nil];

      cell = objects[0];

加载Nib的2种方法

标签:

原文地址:http://www.cnblogs.com/yuyu-2012/p/4701236.html

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