iOS UIButton 設置 titleLabel imageView 的 EdgeInsets

前言:

每當碰到iOS的UIButton里同時出現(xiàn)文字標題和圖片的時候巷送,總會去重寫一個按鈕,重新布局里面的 titlelabel imageview layout翘魄。這次終于知道怎么通過EdgeInsets去調整了氓仲,而不必去重寫贺氓。

效果圖:


效果圖.png

代碼地址:

代碼地址:https://github.com/gityuency/ObjectiveCTools
示例代碼類名 【ButtonTitleImageInsetViewController】

才知道,UIButton 里 titleLabel 的約束载绿,左邊是相對于imageView的右邊粥诫,其他相對于父視圖;同樣崭庸,imageView的右邊約束相對于titleLabel的左邊怀浆,其余相對于父視圖。
在調整EdgeInsets的時候怕享,先按照左右調整执赡,然后再去調整上下。原理請看文章下方的鏈接函筋。

上代碼沙合!

import UIKit

class ButtonTitleImageInsetViewController: UIViewController {
    
    override func viewDidLoad() {
        super.viewDidLoad()
        view.backgroundColor = .white
        
        demo_1()
        
        demo_2()
        
        demo_3()
        
        demo_4()
        
        demo_5()
        
        demo_6()
        
        demo_7()
    }
    
    func demo_1() {
        let string = "文字在左,圖片在右,中間間距"
        let font = UIFont.systemFont(ofSize: 16, weight: .medium)
        let textWidth = string.boundingRect(with: CGSize(width: CGFloat(MAXFLOAT), height: 0), options: .usesLineFragmentOrigin, attributes: [NSAttributedString.Key.font: font], context: nil).width
        let image = UIImage(named: "ff_IconShowAlbum")
        let imageWidth = image?.size.width ?? 0
        let p10: CGFloat = 10
        
        let button = UIButton()
        button.titleLabel?.font = font
        button.setTitle(string, for: .normal)
        button.setTitleColor(UIColor.black, for: .normal)
        button.setImage(image, for: .normal)
        
        button.imageEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: -(textWidth * 2) - p10)
        button.titleEdgeInsets = UIEdgeInsets(top: 0, left: -(imageWidth * 2) - p10, bottom: 0, right: 0)
        
        view.addSubview(button)
        
        button.backgroundColor = .yellow
        button.snp.remakeConstraints { make in
            make.centerX.equalToSuperview()
            make.top.equalToSuperview().offset(150)
            make.width.equalTo(textWidth + imageWidth + p10)
        }
    }
    
    func demo_2() {
        let string = "文字在左,圖片在右,中間間距,按鈕寬度稍大"
        let font = UIFont.systemFont(ofSize: 16, weight: .medium)
        let textWidth = string.boundingRect(with: CGSize(width: CGFloat(MAXFLOAT), height: 0), options: .usesLineFragmentOrigin, attributes: [NSAttributedString.Key.font: font], context: nil).width
        let image = UIImage(named: "ff_IconShowAlbum")
        let imageWidth = image?.size.width ?? 0
        let p10: CGFloat = 10
        
        let button = UIButton()
        button.titleLabel?.font = font
        button.setTitle(string, for: .normal)
        button.setTitleColor(UIColor.black, for: .normal)
        button.setImage(image, for: .normal)
        
        button.imageEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: -(textWidth * 2) - p10)
        button.titleEdgeInsets = UIEdgeInsets(top: 0, left: -(imageWidth * 2) - p10, bottom: 0, right: 0)
        
        view.addSubview(button)
        
        button.backgroundColor = .yellow
        button.snp.remakeConstraints { make in
            make.centerX.equalToSuperview()
            make.top.equalToSuperview().offset(200)
            make.width.equalTo(textWidth + imageWidth + p10 + 200)
        }
    }
    
    func demo_3() {
        let string = "文字在左,圖片在右,緊湊"
        let font = UIFont.systemFont(ofSize: 16, weight: .medium)
        let textWidth = string.boundingRect(with: CGSize(width: CGFloat(MAXFLOAT), height: 0), options: .usesLineFragmentOrigin, attributes: [NSAttributedString.Key.font: font], context: nil).width
        let image = UIImage(named: "ff_IconShowAlbum")
        let imageWidth = image?.size.width ?? 0
        
        let button = UIButton()
        button.titleLabel?.font = font
        button.setTitle(string, for: .normal)
        button.setTitleColor(UIColor.black, for: .normal)
        button.setImage(image, for: .normal)
        
        button.titleEdgeInsets = UIEdgeInsets(top: 0, left: -(imageWidth * 2), bottom: 0, right: 0)
        button.imageEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: -(textWidth * 2))
        
        view.addSubview(button)
        
        button.backgroundColor = .orange
        button.snp.remakeConstraints { make in
            make.centerX.equalToSuperview()
            make.top.equalToSuperview().offset(250)
            // 無需指定寬度
        }
    }
    
    func demo_4() {
        let string = "文字在左,圖片在右,按鈕寬度稍大"
        let font = UIFont.systemFont(ofSize: 16, weight: .medium)
        let textWidth = string.boundingRect(with: CGSize(width: CGFloat(MAXFLOAT), height: 0), options: .usesLineFragmentOrigin, attributes: [NSAttributedString.Key.font: font], context: nil).width
        let image = UIImage(named: "ff_IconShowAlbum")
        let imageWidth = image?.size.width ?? 0
        
        let button = UIButton()
        button.titleLabel?.font = font
        button.setTitle(string, for: .normal)
        button.setTitleColor(UIColor.black, for: .normal)
        button.setImage(image, for: .normal)
        
        button.imageEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: -(textWidth * 2))
        button.titleEdgeInsets = UIEdgeInsets(top: 0, left: -(imageWidth * 2), bottom: 0, right: 0)
        
        view.addSubview(button)
        
        button.backgroundColor = .orange
        button.snp.remakeConstraints { make in
            make.centerX.equalToSuperview()
            make.top.equalToSuperview().offset(300)
            make.width.equalTo(333)
        }
    }
    
    func demo_5() {
        let string = "圖片在上,文字在下,中間間距,四周緊湊"
        let font = UIFont.systemFont(ofSize: 16, weight: .medium)
        let textSize = string.boundingRect(with: CGSize(width: CGFloat(MAXFLOAT), height: 0), options: .usesLineFragmentOrigin, attributes: [NSAttributedString.Key.font: font], context: nil)
        let image = UIImage(named: "ff_IconShowAlbum")
        let imageSize = image?.size ?? CGSizeZero
        
        let button = UIButton()
        button.titleLabel?.font = font
        button.setTitle(string, for: .normal)
        button.setTitleColor(UIColor.black, for: .normal)
        button.setImage(image, for: .normal)
        
        let p10: CGFloat = 10
        
        button.titleEdgeInsets = UIEdgeInsets(top: imageSize.height + p10, left: -imageSize.width, bottom: 0, right: 0)
        button.imageEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: textSize.height + p10, right: -textSize.width)
        
        view.addSubview(button)
        
        button.backgroundColor = .cyan
        button.snp.remakeConstraints { make in
            make.centerX.equalToSuperview()
            make.top.equalToSuperview().offset(350)
            make.height.equalTo(textSize.height + imageSize.height + p10) //高度只可能比這個高, 否則樣式出問題
            let maxWidth = textSize.width > imageSize.width ? textSize.width : imageSize.width
            make.width.equalTo(maxWidth) //將文字或者圖片的最大寬度作為按鈕的寬度,這樣按鈕就能緊湊包裹內容, 也可以不指定寬度,按鈕的寬度默認就是 (圖片+文字)
        }
    }
    
    func demo_6() {
        let string = "圖片在下,文字在上,中間間距"
        let font = UIFont.systemFont(ofSize: 16, weight: .medium)
        let textSize = string.boundingRect(with: CGSize(width: CGFloat(MAXFLOAT), height: 0), options: .usesLineFragmentOrigin, attributes: [NSAttributedString.Key.font: font], context: nil)
        let image = UIImage(named: "ff_IconShowAlbum")
        let imageSize = image?.size ?? CGSizeZero
        
        let button = UIButton()
        button.titleLabel?.font = font
        button.setTitle(string, for: .normal)
        button.setTitleColor(UIColor.black, for: .normal)
        button.setImage(image, for: .normal)
        
        let p10: CGFloat = 10
        
        button.titleEdgeInsets = UIEdgeInsets(top: -imageSize.height - p10, left: -imageSize.width, bottom: 0, right: 0)
        button.imageEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: -textSize.height - p10, right: -textSize.width)
        
        view.addSubview(button)
        
        button.backgroundColor = .cyan
        button.snp.remakeConstraints { make in
            make.centerX.equalToSuperview()
            make.top.equalToSuperview().offset(450)
            make.height.equalTo(textSize.height + imageSize.height + p10) //高度只可能比這個高, 否則樣式出問題
            //可以不指定寬度
        }
    }
    
    func demo_7() {
        let string = "原始樣式"
        let font = UIFont.systemFont(ofSize: 16, weight: .medium)
        let image = UIImage(named: "ff_IconShowAlbum")
        
        let button = UIButton()
        button.titleLabel?.font = font
        button.setTitle(string, for: .normal)
        button.setTitleColor(UIColor.black, for: .normal)
        button.setImage(image, for: .normal)
        
        view.addSubview(button)
        
        button.backgroundColor = .green
        button.snp.remakeConstraints { make in
            make.centerX.equalToSuperview()
            make.top.equalToSuperview().offset(600)
        }
    }
}

感謝這位iOS玩家的指教:
iOS UIButton之UIEdgeInsets詳解

結語

了結一大心結

?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市跌帐,隨后出現(xiàn)的幾起案子首懈,更是在濱河造成了極大的恐慌,老刑警劉巖谨敛,帶你破解...
    沈念sama閱讀 206,126評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件究履,死亡現(xiàn)場離奇詭異,居然都是意外死亡佣盒,警方通過查閱死者的電腦和手機挎袜,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來肥惭,“玉大人盯仪,你說我怎么就攤上這事∶鄞校” “怎么了全景?”我有些...
    開封第一講書人閱讀 152,445評論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長牵囤。 經常有香客問我爸黄,道長滞伟,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,185評論 1 278
  • 正文 為了忘掉前任炕贵,我火速辦了婚禮梆奈,結果婚禮上,老公的妹妹穿的比我還像新娘称开。我一直安慰自己亩钟,他們只是感情好,可當我...
    茶點故事閱讀 64,178評論 5 371
  • 文/花漫 我一把揭開白布鳖轰。 她就那樣靜靜地躺著清酥,像睡著了一般。 火紅的嫁衣襯著肌膚如雪蕴侣。 梳的紋絲不亂的頭發(fā)上焰轻,一...
    開封第一講書人閱讀 48,970評論 1 284
  • 那天,我揣著相機與錄音昆雀,去河邊找鬼辱志。 笑死,一個胖子當著我的面吹牛忆肾,可吹牛的內容都是我干的荸频。 我是一名探鬼主播,決...
    沈念sama閱讀 38,276評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼客冈,長吁一口氣:“原來是場噩夢啊……” “哼旭从!你這毒婦竟也來了?” 一聲冷哼從身側響起场仲,我...
    開封第一講書人閱讀 36,927評論 0 259
  • 序言:老撾萬榮一對情侶失蹤和悦,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后渠缕,有當地人在樹林里發(fā)現(xiàn)了一具尸體鸽素,經...
    沈念sama閱讀 43,400評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,883評論 2 323
  • 正文 我和宋清朗相戀三年亦鳞,在試婚紗的時候發(fā)現(xiàn)自己被綠了馍忽。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 37,997評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡燕差,死狀恐怖遭笋,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情徒探,我是刑警寧澤瓦呼,帶...
    沈念sama閱讀 33,646評論 4 322
  • 正文 年R本政府宣布,位于F島的核電站测暗,受9級特大地震影響央串,放射性物質發(fā)生泄漏磨澡。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,213評論 3 307
  • 文/蒙蒙 一质和、第九天 我趴在偏房一處隱蔽的房頂上張望稳摄。 院中可真熱鬧,春花似錦侦另、人聲如沸秩命。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,204評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至袄友,卻和暖如春殿托,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背剧蚣。 一陣腳步聲響...
    開封第一講書人閱讀 31,423評論 1 260
  • 我被黑心中介騙來泰國打工支竹, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人鸠按。 一個月前我還...
    沈念sama閱讀 45,423評論 2 352
  • 正文 我出身青樓礼搁,卻偏偏與公主長得像,于是被迫代替她去往敵國和親目尖。 傳聞我的和親對象是個殘疾皇子馒吴,可洞房花燭夜當晚...
    茶點故事閱讀 42,722評論 2 345

推薦閱讀更多精彩內容