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

UITableViewCell 复用

时间:2015-05-08 15:16:56      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

1从xib中加载cell

 static NSString *Identifier = @"CellID";
    if(!nib){
        nib = [UINib nibWithNibName:@"NewsCell" bundle:nil];
        [tableView registerNib:nib forCellReuseIdentifier:Identifier];
    }
    
    NewsCell *cell = [tableView dequeueReusableCellWithIdentifier:Identifier];
    //在cell xib 要设置Identifier

2代码加载

cell = [[NewsCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:Identifier];

3从xib加载cell(每次都重新加载nib)

  NSArray *objects = [[NSBundle mainBundle] loadNibNamed:@"NewsCell" owner:self options:nil] ;        cell = [objects lastObject];
           NSLog(@"%ld",objects.count);
                  for(NSObject *o in objects){
          if([o isKindOfClass:[NewsCell class]]){
               cell = (NewsCell *)o;
               break;
            }
     }


UITableViewCell 复用

标签:

原文地址:http://my.oschina.net/u/1781028/blog/412257

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