1

在中使用静态单元格时是否可以调整大小UITableViewCells或部分?UITableViewStoryboards

我希望某些单元格比其他单元格短,就像联系人应用程序具有较短的单元格一样,以便为图片腾出空间。我正在尝试使用情节提要中的静态单元而不是以编程方式来做到这一点。

4

1 回答 1

2

在您的表视图控制器中,实现以下方法:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    if (indexPath.section == 0) {
        if (indexPath.row == 0) {
            // The first cell
            return 25.0;
        else if (indexPath.row == 1) {
            return 44.0;
        }
    }
    // Default
    return 30.0;
}
于 2012-11-17T04:56:44.427 回答