iOS >> UIButton ImageView Property >> How to set Content Mode?

后端 未结 3 550
北荒
北荒 2020-12-29 12:05

Is there a way to set a UIButton Image, BackgroundImage or ImageView Properties Content Mode Property?

I\'ve tried the direct approach (it didn\'t work, of course...

3条回答
  •  误落风尘
    2020-12-29 12:30

    Every UIButton has one hidden UIImageView of its own. So we have to set the content mode like the way given below...

    [[btn imageView] setContentMode: UIViewContentModeScaleAspectFit];
    

提交回复
热议问题