所以我试图将图像从相机加载到图像视图中。我已经完成了,但是图像纵横比发生了变化。
我尝试为 imageview 设置内容模式,但没有效果。这是我的做法:
UIImage *picture=[UIImage imageWithData:slika];
imageview = UIViewContentModeScaleAspectFit;
[imageview setImage:picture forState:UIControlStateNormal];
有任何想法吗?