0x01 問(wèn)題
cell
用的xib
乎赴,在一個(gè)地方高度正確,在另一個(gè)地方不正確.
高度代理方法:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
return UITableViewAutomaticDimension;
}
0x02 解決
加上另外一個(gè)代理方法
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath{
return UITableViewAutomaticDimension;
}
一行代碼真慢,在任何 view 內(nèi)進(jìn)行 Push毅臊、Present
https://github.com/xjh093/JHPP