iOS UI笔记-TableView-02
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ if (indexPath.row == 0 && indexPath.section == 2) { return 80; // 第三个section中第一行 }return 44;} // 设置行高
?
?
发布时间: 2014-01-05 18:22:55 作者: rapoo
iOS UI笔记-TableView-02
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ if (indexPath.row == 0 && indexPath.section == 2) { return 80; // 第三个section中第一行 }return 44;} // 设置行高
?
?