是否可以在UIImageView中显示UIImage,以便图像同时进行缩放和平铺?
例如,它应该以实际分辨率的2倍缩放,但是在UIImageView的整个大小上平铺。这可行吗?
答案 0 :(得分:0)
这应该有效:
UIImage *image = [UIImage imageNamed:@"tile"];
UIImage *newImage = [UIImage imageWithCGImage:[image CGImage] scale:0.5 orientation:image.imageOrientation];
[self.myImageView setBackgroundColor:[UIColor colorWithPatternImage:newImage]];