iOS DeveloperQiShare文章汇总Marked Articles

iOS UIButton之UIEdgeInsets详解

2018-08-07  本文已影响425人  QiShare

级别:★★☆☆☆
标签:「UIButton内偏移量」「titleEdgeInsets」「imageEdgeInsets」
作者: MrLiuQ

我们先看一下苹果官方对UIEdgeInsets说明:

typedef struct UIEdgeInsets {
    CGFloat top, left, bottom, right;  
// specify amount to inset (positive) for each of the edges. values can be negative to 'outset'
} UIEdgeInsets;

基本使用:

xxx.edgeInsets = UIEdgeInsetsMake(.0, .0, .0, .0);

//例如我们设置UICollectionView的edgeInset会使collectionView产生内偏移
UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
layout.sectionInset = UIEdgeInsetsMake(20.0, .0, .0, .0);

引入正题:
然而,UIButton的内偏移量与其他控件有些区别,
因为UIButton内部默认有两个子控件:UILabelUIImageView
所以UIButton在内偏移量的计算上会有差异。
为什么?先卖个关子,下文解释。

UIButton默认子控件位置

UIButtonEdgeInsets:

需求:通过修改edgeInsets,改变Button内部的imageView和titleLabel的相对位置。

思路:通过修改button的两个属性:titleEdgeInsetsimageEdgeInsets,从而达到最终的具体需求。

这里列出了三个比较常见的需求:

小编做了一个demo,效果如下图:

Demo效果图

场景一:左图右字

button.titleEdgeInsets = UIEdgeInsetsMake(0, 10.0, 0, 0);

语法解释:设置了title的左边线的内偏移量为10.0,

但经测试,
注意:实际上title和Image只有5.0的距离
注意:实际上title和Image只有5.0的距离
注意:实际上title和Image只有5.0的距离

图解如下:

在这种场景下:

场景二:左字右图

button.titleEdgeInsets = UIEdgeInsetsMake(.0, - button.imageView.bounds.size.width - 10.0, .0, button.imageView.bounds.size.width);
button.imageEdgeInsets = UIEdgeInsetsMake(.0, button.titleLabel.bounds.size.width, .0, - button.titleLabel.bounds.size.width);

语法解释:

是不是有点绕人?哈哈,不要慌,请看图解

场景三:上图下字

button.titleEdgeInsets = UIEdgeInsetsMake(button.imageView.frame.size.height + 10.0, - button.imageView.bounds.size.width, .0, .0);
button.imageEdgeInsets = UIEdgeInsetsMake(.0, button.titleLabel.bounds.size.width / 2, button.titleLabel.frame.size.height + 10.0, - button.titleLabel.bounds.size.width / 2);

语法解释:

请看图解:

最后,本文Demo链接:GitHub

关注我们的途径有:
QiShare(简书)
QiShare(掘金)
QiShare(知乎)
QiShare(GitHub)
QiShare(CocoaChina)
QiShare(StackOverflow)
QiShare(微信公众号)

推荐文章:iOS UISlider数值与滑块联动

上一篇下一篇

猜你喜欢

热点阅读