heightForRowAtIndexPath-设置cell的高
2020-04-04 本文已影响0人
js_huh
-
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
- UITableView 的代理方法
- 作用: 手动设置指定cell的高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ if((indexPath.row)%2 ==0){ //偶数行的cell高度 == 180; return 180; }else{ return 100; } }
- heightForRowAtIndexPath优化