原型单元存在问题(看图)。
这是我的代码:
- (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;
}