19
如何缩放UIButton的imageView?
我使用创建了一个名为UIButton的实例,并带有一个图像[UIButton setImage:forState:]。button.frame大于图像的尺寸。 现在,我想将此按钮的图像缩小。我试图改变button.imageView.frame,button.imageView.bounds和button.imageView.contentMode,但都显得无效。 谁能帮我缩放UIButton的imageView? 我创建了UIButton这样的: UIButton *button = [[UIButton alloc] init]; [button setImage:image forState:UIControlStateNormal]; 我试图像这样缩放图像: button.imageView.contentMode = UIViewContentModeScaleAspectFit; button.imageView.bounds = CGRectMake(0, 0, 70, 70); 还有这个: button.imageView.contentMode = UIViewContentModeScaleAspectFit; button.imageView.frame = CGRectMake(0, 0, 70, 70);