xib自定義cell不用註冊的方法

weixin_34075268發表於2016-05-20

不重用:

EvenMoreTableViewCell *cell = (EvenMoreTableViewCell *)[[[NSBundle mainBundle] loadNibNamed:@"EvenMoreTableViewCell" owner:nil options:nil] firstObject];


重用:

EvenMoreTableViewCell *cell  = [tableView dequeueReusableCellWithIdentifier:@"EvenMoreListCell"];

if (cell == nil) {

cell = [[NSBundle mainBundle] loadNibNamed:@"EvenMoreTableViewCell" owner:nil options:nil][0];

}

相關文章