我正在建造一个像pinterest一样的瀑布景观。现在我必须明确设置每个图像的宽度和高度,有没有办法让图像自动填充合适的宽度和高度?
答案 0 :(得分:1)
根据UIImageView
Class Reference,initWithImage:
下
此方法调整接收器的帧以匹配指定图像的大小。默认情况下,它还会禁用图像视图的用户交互。
如果您的图片位于UIImage
对象中,则调用initWithImage:
应该为您的图片创建一个UIImageView
适当大小的框架。
// Get your UIImage from somewhere
UIImage *myImage = ...
UIImageView *imageView = [[UIImageView alloc] initWithImage:myImage];