Aspect ratio "Scale To Fill" and "Aspect Fit" make the image stretched to whole UIImageView size. How can I use Aspect Fill" to handell UIImageView inside UITableViewCell. UIImageView inside UITableViewCell is running out of the screen in Aspect Fill. I want to make the image to take is original size rather then to stretch but I want to prevent it form overlapping over its lower cell. Rather its better if it goes below the lower cell.
宽高比“Scale To Fill”和“Aspect Fit”使图像拉伸到整个UIImageView大小。我怎样才能使用Aspect Fill“来管理UITableViewCell里面的UIImageView.UITableViewCell里面的UIImageView在Aspect Fill的屏幕上用完了。我想让图像采用原始尺寸而不是拉伸但是我想防止它形成重叠它的下部细胞。如果它低于下部细胞则更好。
First Scale To Fill Second Aspect Fill
第一个缩放以填充第二个方面填充
I want to use Aspect Fill and gain as below:
我想使用Aspect Fill并获得如下所示:
I use following to select the image mode
我用以下来选择图像模式
My code
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;
}
1 个解决方案
#1
6
You should try to use:
你应该尝试使用:
image.clipsToBounds = YES;
image.contentMode = UIViewContentModeScaleAspectFill;
Does it give you the desired results?
它能给你带来理想的效果吗?
#1
6
You should try to use:
你应该尝试使用:
image.clipsToBounds = YES;
image.contentMode = UIViewContentModeScaleAspectFill;
Does it give you the desired results?
它能给你带来理想的效果吗?