iOS 8 & Xcode 6:UITableView的一些问题及解决方案
1 在代码中使用默认UITableViewCell生成单元时,若事先没在viewDidLoad中注册,则不能使用dequeueReusableCellWithIdentifier: forIndexPath:方法,否则报错。如
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ReusableCellWithIdentifier forIndexPath:indexPath];
应使用如下做法
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ReusableCellWithIdentifier]; if (!cell) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ReusableCellWithIdentifier]; }
另外,dequeueReusableCellWithIdentifier: forIndexPath:方法直接返回一个可用的单元,编程范例为
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ReusableCellWithIdentifier forIndexPath:indexPath]; // 设置cell return cell;
2
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。