7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

UIButton.imageView の ContentMode

Posted at

UIView には内容をどのようにスケーリングするかを指定するための contentMode プロパティがある。UIImageView ではよく使うと思う。
UIButton のアイコン部分にあたる UIImageView にも当然適用されるものだと思っていたが、どうやらうまく働いてくれないらしい。

これだめっぽい

UIButton *btn;
btn.imageView.contentMode = UIViewContentModeScaleAspectFill;

こっちではできる

UIButton *btn;
// 個別に指定する
btn.contentVerticalAlignment = UIControlContentVerticalAlignmentFill;
btn.contentHorizontalAlignment = UIControlContentHorizontalAlignmentFill;

Aspect Fill はどうやるんだろう。

7
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?