更改cell.imageview 的默认大小

(|50|作为显示实际宽和高)

//缩放

float sw=50/cell.imageView.image.size.width;

float sh=50/cell.imageView.image.size.height;

cell.imageView.transform=CGAffineTransformMakeScale(sw,sh);

或者

自定义UITableViewCell 并重写其中的 layoutSubviews方法

- (void) layoutSubviews

{

[super layoutSubviews];

self.imageView.frame = CGRectMake(100, 30, 320, 100 );

}

你可能感兴趣的:(更改cell.imageview 的默认大小)