How to adjust an UIButton's imageSize?

前端 未结 16 2124
时光说笑
时光说笑 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:28

    Updated for Swift 3

    yourButtonName.imageEdgeInsets = UIEdgeInsetsMake(10, 10, 10, 10)
    

提交回复
热议问题