How to adjust an UIButton's imageSize?

前端 未结 16 2258
时光说笑
时光说笑 2021-01-29 21:40

How can I adjust the image size of the UIButton? I am setting the image like this:

[myLikesButton setImage:[UIImage imageNamed:@\"icon-heart.png\"] forState:UICo         


        
16条回答
  •  半阙折子戏
    2021-01-29 22:17

    Heres the Swift version:

    myButton.imageEdgeInsets = UIEdgeInsets(top: 10, left: 10, bottom: 10, right: 10)
    

提交回复
热议问题