细胞收缩中的UITableView图像

时间:2014-07-28 16:09:34

标签: ios uitableview

tableview单元格中的图像会在滚动后立即缩小。他们通过重新加载调整大小到想要的大小。

大明星的大小我想要的。较小的那些在滚动或触摸时出现。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *identifier = @"Cell";
    NSArray *sectionData = self.dataSource[indexPath.section];
    SHFriendTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
    [cell updateWithData:sectionData[indexPath.row]];
    return cell;
}

- (void)updateWithData:(SHFriendTableCellData *)data {
    self.friendImage.contentMode = UIViewContentModeScaleToFill;
    self.friendImage.image = data.image;
    self.nameLabel.text = data.name;
}

更改内容模式无效。

Weird Table

Interface Builder Settings

1 个答案:

答案 0 :(得分:0)

我对图像视图有双重引用。 enter image description here

删除双重引用后删除问题后不见了。