首先簡單介紹一下UIEdgeInsetsMake 引用:UIEdgeInsetsMake使用詳解的圖片和講解,再加上本身的理解與實現git
先看定義github
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;
複製代碼
UIEdgeInsets實際就是一個結構體:ui
UIEdgeInsetsMake(CGFloat top , CGFloat left , CGFloat bottom , CGFloat right )
複製代碼
要設置的就是四個邊距,(warning:left以右爲正方向,right以左爲正方向,這個不必定對、不必定對、不必定對(說三遍),可是能夠幫助理解下面進行偏移時+ -距離,top向下爲正和bottom向上爲正)。spa
先看一張圖: 3d
圖中,藍色標識爲可變區域, 綠色標識爲不變區域。UIEdgeInsets結構體的屬性top與bottom爲一對,用來指定縱向可變區域(黑色虛線矩形),left與right爲一對,用來指定橫向可變區域(白色虛線矩形)。當UIButton/UIImageView的size大於UIImage的size時,會調整圖片中可變區域大小以鋪滿整個控件,具體調整規則以下:code
說明:這四句總結我不知道大家有沒有理解,反正我是沒有理解。orm
上面都是引用別人寫的東西,也該說說本身的內容了。cdn
UIEdgeInsetsMake(CGFloat top , CGFloat left , CGFloat bottom , CGFloat right )
複製代碼
UIEdgeInsetsMake是一個用來描述內容物在包裹容器裏面的內邊距的一個結構體描述,用UIButton來舉例,button裏面的Image是內容物,button是包裹容器,能夠用UIEdgeInsetsMake結構體來描述Image在button裏面的內邊距。 拿圖「UIEdgeInsets」來講就是設置UIEdgeInsetsMake之後,Image的位置就是黑色虛線和白色虛線重合的中間區域。 這種理解有一個前提就是用來描述單獨內容物,好比在UIButton裏面你只設置了Image或者只設置了TitleLabel的時候,當同時設置了Image和TitleLabel的時候,會有一些差異,下面再說。blog
回到主題《UIButton的UIEdgeInsetsMake的使用》 這裏主要是講UIEdgeInsetsMake在UIButton上的應用,相信不少人都遇到了那種需求,就是本來button圖片在左,title在右,不少時候確實也是這樣,可是有時候需求多是「圖片在上,title在下」或者是「圖片在右,title在左」,以下圖所示:圖片
這時候原來系統自帶按鈕就須要咱們使用UIEdgeInsetsMake來進行設置了。上面說到內容物是單一的和多個的是不同,不同在哪?
對於設置了image和title的button,系統會在設置之後自動設置一個合適的ImageEdgeInsets和TitleEdgeInsets
問:啥叫合適的? 答:你new一個button顯示一下就會發現,他邊距確實蠻合適的,雖然有時候title擠在一塊兒顯示不全,可是起碼邊距看上去蠻順眼,因此我也不知道啥叫合適的,我只知道new一個button,設置了image和title之後,就會有一個默認的ImageEdgeInsets和TitleEdgeInsets。
下面咱們在設置image和title以後,打印一下二者的邊距:
//生成button
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setTitle:@"這是一個按鈕" forState:UIControlStateNormal];
[button setImage:[UIImage imageNamed:@"image"] forState:UIControlStateNormal];
button.frame = CGRectMake(100, 100, 160, 40);
button.backgroundColor = [UIColor redColor];
button.titleLabel.backgroundColor = [UIColor purpleColor];
[self.view addSubview:button];
//打印before
NSLog(@"before-->%@",NSStringFromUIEdgeInsets(button.imageEdgeInsets));
NSLog(@"before-->%@",NSStringFromUIEdgeInsets(button.titleEdgeInsets));
//修改邊距
button.imageEdgeInsets = UIEdgeInsetsMake(0, button.titleLabel.intrinsicContentSize.width, 0, -button.titleLabel.intrinsicContentSize.width);
button.titleEdgeInsets = UIEdgeInsetsMake(0, -button.currentImage.size.width, 0, button.currentImage.size.width);
//打印after
NSLog(@"after-->%@",NSStringFromUIEdgeInsets(button.imageEdgeInsets));
NSLog(@"after-->%@",NSStringFromUIEdgeInsets(button.titleEdgeInsets));
複製代碼
會發現二者的邊距,會發現二者打印出來都是(0,0,0,0)和(0,0,0,0)。
WTF???你是來逗個人,這邊距明顯都不爲0啊,因此我猜測,這個其實並非image和titleLabel相對於button的邊距,這是在原有基礎邊距基礎上進行的一個偏移。
上面咱們說到,在給button設置了image和title之後,系統會自動設置一個合適(多合適,看原始按鈕那個圖就知道,確實蠻合適的這邊距)的ImageEdgeInsets和TitleEdgeInsets,因此咱們此時打印before其實可能打印的並非真實的imageEdgeInsets和titleEdgeInsets,而是咱們設置的EdgeInsets,由於咱們沒有設置,因此都打印(0,0,0,0),後來咱們設置之後,打印出了{0, 110.5, 0, -110.5}和{0, -23, 0, 23}。 如今就要說說設置的這兩行代碼:
button.imageEdgeInsets = UIEdgeInsetsMake(0, button.titleLabel.intrinsicContentSize.width, 0, -button.titleLabel.intrinsicContentSize.width);
button.titleEdgeInsets = UIEdgeInsetsMake(0, -button.currentImage.size.width, 0, button.currentImage.size.width);
複製代碼
一個更新image的邊距,一個更新title的邊距。 首先咱們說更新image的邊距,咱們須要讓image右移一個titleLabel的寬度的距離,因此咱們須要image的左右邊距都右移一個titleLabel。 還記得咱們一開始設定的正負方向嗎,(warning:left以右爲正方向,right以左爲正方向,可是能夠幫助理解下面進行偏移時+ -距離,top向下爲正和bottom向上爲正,這個能夠參照使用masonry進行約束設置斷定方向)。
咱們使用button.titleLabel.intrinsicContentSize.width計算titleLabel的寬度(tips:使用button.titleLabel.bounds.size.width的在iOS8以上會獲得寬度爲0的結果,形成錯誤的結果),而後由於image的left和right都要向右偏移一個titleLabel的寬度,而left以右爲正方向,right以左爲正方向,因此是設置的是UIEdgeInsetsMake(0, button.titleLabel.intrinsicContentSize.width, 0, -button.titleLabel.intrinsicContentSize.width);
同理,titleLabel須要向左移一個image的寬度,按照咱們預想的正負方向進行設置:button.titleEdgeInsets = UIEdgeInsetsMake(0, -button.currentImage.size.width, 0, button.currentImage.size.width);
這裏須要注意使用button.currentImage.size.width
計算獲得的效果要好於button.imageView計算出來的width
貼出代碼,就不一一講解了:
- (void)layoutButtonWithEdgeInsetsStyle:(MKButtonEdgeInsetsStyle)style
imageTitleSpace:(CGFloat)space {
// 1. 獲得imageView和titleLabel的寬、高
// CGFloat imageWith = self.imageView.frame.size.width;
// CGFloat imageHeight = self.imageView.frame.size.height;
CGFloat imageWith = self.currentImage.size.width;
CGFloat imageHeight = self.currentImage.size.height;
CGFloat labelWidth = 0.0;
CGFloat labelHeight = 0.0;
if ([UIDevice currentDevice].systemVersion.floatValue >= 8.0) {
// 因爲iOS8中titleLabel的size爲0,用下面的這種設置
labelWidth = self.titleLabel.intrinsicContentSize.width;
labelHeight = self.titleLabel.intrinsicContentSize.height;
} else {
labelWidth = self.titleLabel.frame.size.width;
labelHeight = self.titleLabel.frame.size.height;
}
// 2. 聲明全局的imageEdgeInsets和labelEdgeInsets
UIEdgeInsets imageEdgeInsets = UIEdgeInsetsZero;
UIEdgeInsets labelEdgeInsets = UIEdgeInsetsZero;
// 3. 根據style和space獲得imageEdgeInsets和labelEdgeInsets的值
switch (style) {
case MKButtonEdgeInsetsStyleTop: {
imageEdgeInsets = UIEdgeInsetsMake(-labelHeight-space, 0, 0, -labelWidth);
labelEdgeInsets = UIEdgeInsetsMake(0, -imageWith, -imageHeight-space, 0);
}
break;
case MKButtonEdgeInsetsStyleLeft: {
imageEdgeInsets = UIEdgeInsetsMake(0, -space, 0, space);
labelEdgeInsets = UIEdgeInsetsMake(0, space, 0, -space);
}
break;
case MKButtonEdgeInsetsStyleBottom: {
imageEdgeInsets = UIEdgeInsetsMake(0, 0, -labelHeight-space, -labelWidth);
labelEdgeInsets = UIEdgeInsetsMake(-imageHeight-space, -imageWith, 0, 0);
}
break;
case MKButtonEdgeInsetsStyleRight: {
imageEdgeInsets = UIEdgeInsetsMake(0, labelWidth+space, 0, -labelWidth-space);
labelEdgeInsets = UIEdgeInsetsMake(0, -imageWith-space, 0, imageWith+space);
}
break;
default:
break;
}
// 4. 賦值
self.titleEdgeInsets = labelEdgeInsets;
self.imageEdgeInsets = imageEdgeInsets;
}
複製代碼
郵箱: xiebangyao_1994@163.com
相關帳號: