更改UIImageView的大小

时间:2012-09-19 17:12:33

标签: iphone uiimageview

我想制作一个动态的照片库。

我正在将图片加载到UIImageView中,它可以正常工作。

问题在于我不知道如何缩小图片。

self.imageView.frame = (CGRect){
        .origin=CGPointMake(self.view.bounds.size.width*x, 0.00+z), 
        .size=self.scrollView.bounds.size
    };

我试过像.width这样的东西,但它不起作用。

1 个答案:

答案 0 :(得分:1)

我终于明白了

.origin和.origin。尺寸只是缩小尺码的较短方式

更好的方法是

   self.imageView.frame = (CGRect){.origin=self.view.bounds.size.width*x, 0.00,300,300

    };