UIButton里面有奇怪的填充物

时间:2017-12-27 18:35:52

标签: ios swift xcode uibutton

我已经在我的故事板上添加了2个按钮来显示评论并且喜欢num,但是在按钮内左右显示了奇怪的填充:

The problem

我的代码是:

    cell.btnComments.setTitle("199", for: .normal)
    cell.btnComments.setImage(UIImage(named: "3.png"), for: .normal)
    cell.btnComments.imageView!.contentMode = UIViewContentMode.scaleAspectFit

    cell.btnLike.setTitle("19963", for: .normal)
    cell.btnLike.setImage(UIImage(named: "4.png"), for: .normal)
    cell.btnLike.imageView!.contentMode = UIViewContentMode.scaleAspectFit

我试过制作sizeToFit(),但它没有用。还有我的Xcode设置:

Xcode Xcode


请帮我解决这个问题。

1 个答案:

答案 0 :(得分:0)

我添加了:

    cell.btnComments.contentEdgeInsets = UIEdgeInsetsMake(0,-23,0,-13)
    cell.btnComments.titleEdgeInsets = UIEdgeInsetsMake(0,-13,0,0)

    cell.btnLike.contentEdgeInsets = UIEdgeInsetsMake(0,-23,0,-13)
    cell.btnLike.titleEdgeInsets = UIEdgeInsetsMake(0,-13,0,0)

它有效!