iOS實(shí)現(xiàn)Button文字(titleLabel)和圖片(imageView)上下左右排列

  • 在設(shè)置這兩個(gè)之前但狭,我們先要理解Button上面的titleLabel和imageView的位置關(guān)系(想象Button默認(rèn)的image和label的顯示):

我們知道帚戳,默認(rèn)情況下如果UIbutton同時(shí)設(shè)置了標(biāo)題和圖片的情況下,titleLabel在image的右側(cè)挂捻。

1.titleEdgeInsets是titleLabel相對(duì)于其上下左右的inset蒋譬,跟tableView的contentInset是類似的;

2.如果只有title女器,那titleLabel的 上下左右 都是 相對(duì)于Button 的;

3.如果只有image住诸,那imageView的 上下左右 都是 相對(duì)于Button 的驾胆;

4.如果同時(shí)有image和label,那image的 上下左 是 相對(duì)于Button 的贱呐,右 是 相對(duì)于label 的丧诺;
label的 上下右 是 相對(duì)于Button的, 左 是 相對(duì)于label 的奄薇。

0x01.新建一個(gè)UIButton類驳阎。

xx.h

#import <UIKit/UIKit.h>

typedef NS_ENUM(NSUInteger, MKButtonEdgeInsetsStyle) {
    MKButtonEdgeInsetsStyleTop, // image在上,label在下
    MKButtonEdgeInsetsStyleLeft, // image在左馁蒂,label在右
    MKButtonEdgeInsetsStyleBottom, // image在下呵晚,label在上
    MKButtonEdgeInsetsStyleRight // image在右,label在左
};

@interface UIButton (ImageTitleSpacing)

/**
 *  設(shè)置button的titleLabel和imageView的布局樣式沫屡,及間距
 *
 *  @param style titleLabel和imageView的布局樣式
 *  @param space titleLabel和imageView的間距
 */
- (void)layoutButtonWithEdgeInsetsStyle:(MKButtonEdgeInsetsStyle)style
                        imageTitleSpace:(CGFloat)space;

@end

xx.m

#import "UIButton+ImageTitleSpacing.h"

@implementation UIButton (ImageTitleSpacing)

- (void)layoutButtonWithEdgeInsetsStyle:(MKButtonEdgeInsetsStyle)style
                        imageTitleSpace:(CGFloat)space
{
//    self.backgroundColor = [UIColor cyanColor];
    
    /**
     *  前置知識(shí)點(diǎn):titleEdgeInsets是title相對(duì)于其上下左右的inset饵隙,跟tableView的contentInset是類似的,
     *  如果只有title沮脖,那它上下左右都是相對(duì)于button的金矛,image也是一樣芯急;
     *  如果同時(shí)有image和label,那這時(shí)候image的上左下是相對(duì)于button驶俊,右邊是相對(duì)于label的娶耍;title的上右下是相對(duì)于button,左邊是相對(duì)于image的废睦。
     */

    
    // 1. 得到imageView和titleLabel的寬伺绽、高
    CGFloat imageWith = self.imageView.frame.size.width;
    CGFloat imageHeight = self.imageView.frame.size.height;
    
    CGFloat labelWidth = 0.0;
    CGFloat labelHeight = 0.0;
    if ([UIDevice currentDevice].systemVersion.floatValue >= 8.0) {
        // 由于iOS8中titleLabel的size為0养泡,用下面的這種設(shè)置
        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. 根據(jù)style和space得到imageEdgeInsets和labelEdgeInsets的值
    switch (style) {
        case MKButtonEdgeInsetsStyleTop:
        {
            imageEdgeInsets = UIEdgeInsetsMake(-labelHeight-space/2.0, 0, 0, -labelWidth);
            labelEdgeInsets = UIEdgeInsetsMake(0, -imageWith, -imageHeight-space/2.0, 0);
        }
            break;
        case MKButtonEdgeInsetsStyleLeft:
        {
            imageEdgeInsets = UIEdgeInsetsMake(0, -space/2.0, 0, space/2.0);
            labelEdgeInsets = UIEdgeInsetsMake(0, space/2.0, 0, -space/2.0);
        }
            break;
        case MKButtonEdgeInsetsStyleBottom:
        {
            imageEdgeInsets = UIEdgeInsetsMake(0, 0, -labelHeight-space/2.0, -labelWidth);
            labelEdgeInsets = UIEdgeInsetsMake(-imageHeight-space/2.0, -imageWith, 0, 0);
        }
            break;
        case MKButtonEdgeInsetsStyleRight:
        {
            imageEdgeInsets = UIEdgeInsetsMake(0, labelWidth+space/2.0, 0, -labelWidth-space/2.0);
            labelEdgeInsets = UIEdgeInsetsMake(0, -imageWith-space/2.0, 0, imageWith+space/2.0);
        }
            break;
        default:
            break;
    }
    
    // 4. 賦值
    self.titleEdgeInsets = labelEdgeInsets;
    self.imageEdgeInsets = imageEdgeInsets;
}

@end

0x02.使用方法嗜湃。

#import "ViewController.h"
#import "xx.h"

@interface ViewController ()

@property (weak, nonatomic) IBOutlet UIButton *topButton;
@property (weak, nonatomic) IBOutlet UIButton *leftButton;
@property (weak, nonatomic) IBOutlet UIButton *bottomButton;
@property (weak, nonatomic) IBOutlet UIButton *rightButton;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    [self updateUI];
}

- (void)updateUI {
    CGFloat space = 20.0;
    [self.topButton layoutButtonWithEdgeInsetsStyle:MKButtonEdgeInsetsStyleTop
                                    imageTitleSpace:space];
    
    [self.leftButton layoutButtonWithEdgeInsetsStyle:MKButtonEdgeInsetsStyleLeft
                                     imageTitleSpace:space];
    
    [self.bottomButton layoutButtonWithEdgeInsetsStyle:MKButtonEdgeInsetsStyleBottom
                                       imageTitleSpace:space];
    
    [self.rightButton layoutButtonWithEdgeInsetsStyle:MKButtonEdgeInsetsStyleRight
                                      imageTitleSpace:space];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市澜掩,隨后出現(xiàn)的幾起案子购披,更是在濱河造成了極大的恐慌,老刑警劉巖肩榕,帶你破解...
    沈念sama閱讀 211,042評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件刚陡,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡株汉,警方通過(guò)查閱死者的電腦和手機(jī)筐乳,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)乔妈,“玉大人蝙云,你說(shuō)我怎么就攤上這事÷氛伲” “怎么了勃刨?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,674評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)股淡。 經(jīng)常有香客問(wèn)我身隐,道長(zhǎng),這世上最難降的妖魔是什么唯灵? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,340評(píng)論 1 283
  • 正文 為了忘掉前任贾铝,我火速辦了婚禮,結(jié)果婚禮上埠帕,老公的妹妹穿的比我還像新娘忌傻。我一直安慰自己,他們只是感情好搞监,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,404評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布水孩。 她就那樣靜靜地躺著,像睡著了一般琐驴。 火紅的嫁衣襯著肌膚如雪俘种。 梳的紋絲不亂的頭發(fā)上秤标,一...
    開(kāi)封第一講書(shū)人閱讀 49,749評(píng)論 1 289
  • 那天,我揣著相機(jī)與錄音宙刘,去河邊找鬼苍姜。 笑死,一個(gè)胖子當(dāng)著我的面吹牛悬包,可吹牛的內(nèi)容都是我干的衙猪。 我是一名探鬼主播,決...
    沈念sama閱讀 38,902評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼布近,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼垫释!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起撑瞧,我...
    開(kāi)封第一講書(shū)人閱讀 37,662評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤棵譬,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后预伺,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體订咸,經(jīng)...
    沈念sama閱讀 44,110評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評(píng)論 2 325
  • 正文 我和宋清朗相戀三年酬诀,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了脏嚷。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,577評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡瞒御,死狀恐怖父叙,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情葵腹,我是刑警寧澤高每,帶...
    沈念sama閱讀 34,258評(píng)論 4 328
  • 正文 年R本政府宣布,位于F島的核電站践宴,受9級(jí)特大地震影響鲸匿,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜阻肩,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,848評(píng)論 3 312
  • 文/蒙蒙 一带欢、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧烤惊,春花似錦乔煞、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,726評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至雄右,卻和暖如春空骚,著一層夾襖步出監(jiān)牢的瞬間纺讲,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,952評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工囤屹, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留熬甚,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,271評(píng)論 2 360
  • 正文 我出身青樓肋坚,卻偏偏與公主長(zhǎng)得像乡括,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子智厌,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,452評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容