我刚接触iphone,目前我的问题是
我在图像视图中显示了6张图像在imageview中没有显示图像我认为图像视图是大尺寸的
所以请给我发送此imageview的代码。
提前感谢你。
答案 0 :(得分:0)
您可以将其用于图像大小调整:
- (UIImage *)rescaleImageToSize:(CGSize)size {
CGRect rect = CGRectMake(0.0, 0.0, size.width, size.height);
UIGraphicsBeginImageContext(rect.size);
[self drawInRect:rect]; // scales image to rect
UIImage *resImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return resImage;
}