heightCanBeGuessed的错误处理

来源:互联网 发布:浙商控股集团 知乎 编辑:程序博客网 时间:2024/06/01 10:34

heightCanBeGuessed的错误处理

by 伍雪颖

error:
[UITableViewRowData rectForRow:inSection:heightCanBeGuessed:]

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellId forIndexPath:indexPath];
改为:
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellId];
1 0