原型单元格太大(xcode)

时间:2015-12-31 08:43:11

标签: xcode

原型单元存在问题(看图)。

这是我的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    groupsTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"groupCell" forIndexPath:indexPath];

    Group *gr = [myGroupsListData objectAtIndex:indexPath.row];

    cell.groupName.text = gr.name;
   [cell.groupImage setImage:[UIImage imageNamed:gr.imageName]];
    return cell;
}

http://postimg.org/image/lr1wh0mth/

1 个答案:

答案 0 :(得分:0)

确保TableView和TableViewCell的属性检查器中的行高是相同的。

enter image description here

enter image description here