19
UIButtonのimageViewをスケーリングするにはどうすればよいですか?
を使用して、画像を使用して「button」という名前の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);