UIButton setImageEdgeInsets、setTitleEdgeInsets、setContentEdgeInsets

一:只设置Image

设置setImageEdgeInsets之后通过Debug View 查看ImageView的frame,得到数据:(Unbutton的Width都为335,图片的Size为(32,32))

ImageView.x ImageEdgeInsets x得到的规则
151.5 (0, 0, 0, 0) ( 335 - 32 )/ 2
156.5 (0, 10, 0, 0) (335 - 32 - 10 )/ 2 + 10
101.5 (0, 0, 0, 100) (335 - 32 - 100 )/ 2 + 0
106.5 (0, 10, 0, 100) (335 - 32 - 10 - 100 )/ 2 + 10

总结:x的得到规则 (width-image.width-imageEdgeInset.left-imageEdgeInset.right)/2

二:既设置Image,又设置title

ImageView.x Label.frame ImageEdgeInsets TitleEdgeInsets
124.5 (156.5,9.5,54,21.5) (0,0,0,0) (0,0,0,0)
149.5 (156.5,9.5,54,21.5) (0,50,0,0) (0,0,0,0)
149.5 (106.5,9.5,54,21.5) (0,50,0,0) (0,0,0,100)

ImageView.x的计算规则有一点变化了:(button的宽度 - 离左右的距离 - 图片的宽度 -Label的宽度)/ 2 + 离左边的距离。

Label.x 的计算规则:(button的宽度 - 离左右的距离 - 图片的宽度 -Label的宽度)/ 2 + 离左边的距离 + 图片的宽度。(默认左边总有你设置的图片似得)

既有图片又有title的话,计算居中时总是以两个的的宽度为一体的。

三:在第二种的基础上,再设置setContentEdgeInsets

ImageView.x Label.frame setContentEdgeInsets
134.5 (166.5, 9.5, 54, 21.5) (0, 20, 0, 0

在原有的基础上相当于把button的Width - 离左右边的距离,之后再计算Image和Label的位置。

你可能感兴趣的:(UIButton setImageEdgeInsets、setTitleEdgeInsets、setContentEdgeInsets)