-
- (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优化
网友评论