宽高比“缩放以填充”和“Aspect Fit”使图像拉伸到整个UIImageView大小。如何使用Aspect Fill“在UITableViewCell内部进行UIImageView.UITableViewCell内的UIImageView在 Aspect Fill 中用完了屏幕。我想让图像采取原始尺寸而不是伸展但我希望防止它在其下部单元格上形成重叠。如果它低于下部单元格则更好。
首先缩放以填充第二个 Aspect Fill
我使用以下选择图像模式
我的代码
Cell.m
- (void)awakeFromNib {
_img.clipsToBounds = YES;
_img.contentMode = UIViewContentModeScaleAspectFill;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
}
VCUIViewController.m
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.section == 0) {
static NSString *CellIdentifier = @"NoticiasDetailImageCell";
NoticiasDetailImageCell *cell = (NoticiasDetailImageCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:CellIdentifier owner:self options:nil];
cell = (NoticiasDetailImageCell *)[nib objectAtIndex:0];
}
cell.img.image = self.img;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
return cell;
}
答案 0 :(得分:6)
你应该尝试使用:
image.clipsToBounds = YES;
image.contentMode = UIViewContentModeScaleAspectFill;
它能给你带来理想的效果吗?