转载自:桥边风满袖的博客
错误原因:
使用Xib或者Storyboard创建cell的时候没有设置cell的高度
解决办法:
1>在代码里面设置cell的默认高度
self.tableView.rowHeight = 44;
2>在Xib或者Storyboard里面调整cell的高度,让它不等于44.
3>在tableview的delegate方法设置高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 44;
}
网友评论