Swift 自定義底部按鈕

1.有的小伙伴希望自己在控制器的底部添加bottomBarButton,不知道如何下手,希望我下面這些代碼能幫到你們.

2.這個(gè)是我自己封裝的一個(gè)類:

import UIKit

class BottombarView: UIView {

//MARK:-自定義構(gòu)造函數(shù)

init(frame: CGRect, btnCount: Int, titles:[String], target:AnyObject?,actions:[Selector],colors:[UIColor]){

super.init(frame: frame)

self.translatesAutoresizingMaskIntoConstraints = false

self.backgroundColor = .clearColor()

// blur

let effetView = UIVisualEffectView(effect: UIBlurEffect(style: .Light))

effetView.translatesAutoresizingMaskIntoConstraints = false

self.addSubview(effetView)

NSLayoutConstraint(item: effetView, attribute: .Top, relatedBy: .Equal, toItem: self, attribute: .Top, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: effetView, attribute: .Bottom, relatedBy: .Equal, toItem: self, attribute: .Bottom, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: effetView, attribute: .Leading, relatedBy: .Equal, toItem: self, attribute: .Leading, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: effetView, attribute: .Trailing, relatedBy: .Equal, toItem: self, attribute: .Trailing, multiplier: 1, constant: 0).active = true

// line

let line = UIView()

line.translatesAutoresizingMaskIntoConstraints = false

line.backgroundColor = kLineColor

self.addSubview(line)

NSLayoutConstraint(item: line, attribute: .Top, relatedBy: .Equal, toItem: self, attribute: .Top, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: line, attribute: .Leading, relatedBy: .Equal, toItem: self, attribute: .Leading, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: line, attribute: .Trailing, relatedBy: .Equal, toItem: self, attribute: .Trailing, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: line, attribute: .Height, relatedBy: .Equal, toItem: nil, attribute: .NotAnAttribute, multiplier: 1, constant: 1).active = true

addBottomBtn(btnCount, titles: titles, target: target, actions: actions, colors: colors)

}

private func addBottomBtn(btnCount: Int, titles:[String], target:AnyObject?,actions:[Selector],colors:[UIColor]) {

switch btnCount {

case 1:

let btn1 = UIButton()

btn1.translatesAutoresizingMaskIntoConstraints = false

btn1.setTitle(NSLocalizedString(titles[0], comment: ""), forState: .Normal)

btn1.setTitleColor(.whiteColor(), forState: .Normal)

btn1.titleLabel?.font = kFontL

btn1.backgroundColor = colors[0]

btn1.layer.cornerRadius = 35/2

btn1.layer.masksToBounds = true

btn1.addTarget(target, action:actions[0], forControlEvents: .TouchUpInside)

self.addSubview(btn1)

NSLayoutConstraint(item: btn1, attribute: .CenterY, relatedBy: .Equal, toItem: self, attribute: .CenterY, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: btn1, attribute: .Leading, relatedBy: .Equal, toItem: self, attribute: .Leading, multiplier: 1, constant: 20).active = true

NSLayoutConstraint(item: btn1, attribute: .Trailing, relatedBy: .Equal, toItem: self, attribute: .Trailing, multiplier: 1, constant: -20).active = true

NSLayoutConstraint(item: btn1, attribute: .Height, relatedBy: .Equal, toItem: nil, attribute: .NotAnAttribute, multiplier: 1, constant: 35).active = true

case 2:

// buttons

let btn1 = UIButton()

btn1.translatesAutoresizingMaskIntoConstraints = false

btn1.setTitle(NSLocalizedString(titles[0] , comment: ""), forState: .Normal)

btn1.titleLabel?.font = kFontL

if colors[0] == UIColor(hexString: "#a0a0a0") {

btn1.setTitleColor(kTextColor2, forState: .Normal)

btn1.layer.borderColor = colors[0].CGColor

btn1.layer.borderWidth = 1

} else {

btn1.setTitleColor(.whiteColor(), forState: .Normal)

btn1.backgroundColor = colors[0]

}

btn1.layer.cornerRadius = 35/2

btn1.layer.masksToBounds = true

btn1.addTarget(target, action: actions[0], forControlEvents: .TouchUpInside)

btn1.tag = 1

self.addSubview(btn1)

let btn2 = UIButton()

btn2.translatesAutoresizingMaskIntoConstraints = false

btn2.setTitle(NSLocalizedString(titles[1], comment: ""), forState: .Normal)

btn2.setTitleColor(.whiteColor(), forState: .Normal)

btn2.titleLabel?.font = kFontL

btn2.backgroundColor = colors[1]

btn2.layer.cornerRadius = 35/2

btn2.layer.masksToBounds = true

btn2.addTarget(target, action: actions[1], forControlEvents: .TouchUpInside)

btn2.tag = 2

self.addSubview(btn2)

NSLayoutConstraint(item: btn1, attribute: .Leading, relatedBy: .Equal, toItem: self, attribute: .Leading, multiplier: 1, constant: 20).active = true

NSLayoutConstraint(item: btn1, attribute: .CenterY, relatedBy: .Equal, toItem: self, attribute: .CenterY, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: btn1, attribute: .Height, relatedBy: .Equal, toItem: nil, attribute: .NotAnAttribute, multiplier: 1, constant: 35).active = true

NSLayoutConstraint(item: btn2, attribute: .Leading, relatedBy: .Equal, toItem: btn1, attribute: .Trailing, multiplier: 1, constant: 20).active = true

NSLayoutConstraint(item: btn2, attribute: .Trailing, relatedBy: .Equal, toItem: self, attribute: .Trailing, multiplier: 1, constant: -20).active = true

NSLayoutConstraint(item: btn2, attribute: .CenterY, relatedBy: .Equal, toItem: self, attribute: .CenterY, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: btn2, attribute: .Height, relatedBy: .Equal, toItem: nil, attribute: .NotAnAttribute, multiplier: 1, constant: 35).active = true

NSLayoutConstraint(item: btn2, attribute: .Width, relatedBy: .Equal, toItem: btn1, attribute: .Width, multiplier: 1, constant: 0).active = true

case 3:

let btn1 = UIButton()

btn1.translatesAutoresizingMaskIntoConstraints = false

btn1.setTitle(NSLocalizedString(titles[0], comment: ""), forState: .Normal)

btn1.titleLabel?.font = kFontL

if colors[0] == UIColor(hexString: "#a0a0a0") {

btn1.setTitleColor(kTextColor2, forState: .Normal)

btn1.layer.borderColor = colors[0].CGColor

btn1.layer.borderWidth = 1

} else {

btn1.setTitleColor(.whiteColor(), forState: .Normal)

btn1.backgroundColor = colors[0]

}

btn1.layer.cornerRadius = 35/2

btn1.layer.masksToBounds = true

btn1.addTarget(target, action:actions[0], forControlEvents: .TouchUpInside)

self.addSubview(btn1)

let btn2 = UIButton()

btn2.translatesAutoresizingMaskIntoConstraints = false

btn2.setTitle(NSLocalizedString(titles[1], comment: ""), forState: .Normal)

btn2.titleLabel?.font = kFontL

if colors[1] == UIColor(hexString: "#a0a0a0") {

btn2.setTitleColor(kTextColor2, forState: .Normal)

btn2.layer.borderColor = colors[1].CGColor

btn2.layer.borderWidth = 1

} else {

btn2.setTitleColor(.whiteColor(), forState: .Normal)

btn2.backgroundColor = colors[1]

}

btn2.layer.cornerRadius = 35/2

btn2.layer.masksToBounds = true

btn2.addTarget(target, action:actions[1], forControlEvents: .TouchUpInside)

self.addSubview(btn2)

let btn3 = UIButton()

btn3.translatesAutoresizingMaskIntoConstraints = false

btn3.setTitle(NSLocalizedString(titles[2], comment: ""), forState: .Normal)

btn3.setTitleColor(.whiteColor(), forState: .Normal)

btn3.titleLabel?.font = kFontL

btn3.backgroundColor = colors[2]

btn3.layer.cornerRadius = 35/2

btn3.layer.masksToBounds = true

btn3.addTarget(target, action:actions[2], forControlEvents: .TouchUpInside)

self.addSubview(btn3)

NSLayoutConstraint(item: btn1, attribute: .Leading, relatedBy: .Equal, toItem: self, attribute: .Leading, multiplier: 1, constant: 15).active = true

NSLayoutConstraint(item: btn1, attribute: .CenterY, relatedBy: .Equal, toItem: self, attribute: .CenterY, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: btn1, attribute: .Height, relatedBy: .Equal, toItem: nil, attribute: .NotAnAttribute, multiplier: 1, constant: 35).active = true

NSLayoutConstraint(item: btn2, attribute: .Leading, relatedBy: .Equal, toItem: btn1, attribute: .Trailing, multiplier: 1, constant: 15).active = true

NSLayoutConstraint(item: btn2, attribute: .CenterY, relatedBy: .Equal, toItem: self, attribute: .CenterY, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: btn2, attribute: .Height, relatedBy: .Equal, toItem: nil, attribute: .NotAnAttribute, multiplier: 1, constant: 35).active = true

NSLayoutConstraint(item: btn2, attribute: .Width, relatedBy: .Equal, toItem: btn1, attribute: .Width, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: btn3, attribute: .Leading, relatedBy: .Equal, toItem: btn2, attribute: .Trailing, multiplier: 1, constant: 15).active = true

NSLayoutConstraint(item: btn3, attribute: .Trailing, relatedBy: .Equal, toItem: self, attribute: .Trailing, multiplier: 1, constant: -15).active = true

NSLayoutConstraint(item: btn3, attribute: .CenterY, relatedBy: .Equal, toItem: self, attribute: .CenterY, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: btn3, attribute: .Height, relatedBy: .Equal, toItem: nil, attribute: .NotAnAttribute, multiplier: 1, constant: 35).active = true

NSLayoutConstraint(item: btn3, attribute: .Width, relatedBy: .Equal, toItem: btn1, attribute: .Width, multiplier: 1, constant: 0).active = true

default:

return

}

}

required init?(coder aDecoder: NSCoder) {

fatalError("init(coder:) has not been implemented")

}

}

3.看一堆代碼真心煩,直接復(fù)制到自己創(chuàng)建的View中,在控制器中使用如下:


//希望添加3個(gè)按鈕

private lazy var bottomBar: UIView = {

let action1 = #selector(btn1Click(_:))

let action2 = #selector(btn2Click(_:))

let action3 = #selector(btn3Click(_:))

let view = BottombarView(frame: CGRect.zero, btnCount: 3, titles: ["按鈕1","按鈕2","按鈕3"], target: self, actions: [action1, action2, action3], colors: [kTextColor3, kTextColor3, kPurpleColor])

return view

}()

//希望添加2個(gè)按鈕

private lazy var bottomBar: UIView = {

let action1 = #selector(btn1Click(_:))

let action2 = #selector(btn2Click(_:))

let view = BottombarView(frame: CGRect.zero, btnCount: 2, titles: ["按鈕1","按鈕2"], target: self, actions: [action1, action2], colors: [kTextColor3, kPurpleColor])

return view

}()

//希望添加1個(gè)按鈕

private lazy var bottomBar: UIView = {

let action1 = #selector(btn1Click(_:))

let view = BottombarView(frame: CGRect.zero,btnCount: 1, titles: ["按鈕1"], target: self, actions: [action1], colors: [kPurpleColor])

return view

}()

注:colors是按鈕的背景色,kTextColor3顏色是我特殊處理了,你可以根據(jù)自己需求更改顏色代碼

override func viewDidLoad() {

super.viewDidLoad()

// tableview

self.tableView.tableFooterView = UIView(frame: CGRect(x: 0, y: 0, width: self.tableView.frame.width, height: 50))

// bar

view.addSubview(bottomBar)

NSLayoutConstraint(item: bottomBar, attribute: .Bottom, relatedBy: .Equal, toItem: view, attribute: .Bottom, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: bottomBar, attribute: .Leading, relatedBy: .Equal, toItem: view, attribute: .Leading, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: bottomBar, attribute: .Trailing, relatedBy: .Equal, toItem: view, attribute: .Trailing, multiplier: 1, constant: 0).active = true

NSLayoutConstraint(item: bottomBar, attribute: .Height, relatedBy: .Equal, toItem: nil, attribute: .NotAnAttribute, multiplier: 1, constant: 50).active = true

}

注:如果你寫在tableView上需要加下面代碼

self.tableView.tableFooterView = UIView(frame: CGRect(x: 0, y: 0, width: self.tableView.frame.width, height: 50))

最后:希望能幫到一些小伙伴們更快捷的開發(fā)項(xiàng)目.

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末搏予,一起剝皮案震驚了整個(gè)濱河市泣棋,隨后出現(xiàn)的幾起案子儿惫,更是在濱河造成了極大的恐慌蒲牧,老刑警劉巖,帶你破解...
    沈念sama閱讀 218,284評(píng)論 6 506
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件杯道,死亡現(xiàn)場(chǎng)離奇詭異垛膝,居然都是意外死亡锤灿,警方通過查閱死者的電腦和手機(jī)赘艳,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,115評(píng)論 3 395
  • 文/潘曉璐 我一進(jìn)店門酌毡,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人蕾管,你說我怎么就攤上這事枷踏。” “怎么了掰曾?”我有些...
    開封第一講書人閱讀 164,614評(píng)論 0 354
  • 文/不壞的土叔 我叫張陵旭蠕,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我,道長(zhǎng)掏熬,這世上最難降的妖魔是什么佑稠? 我笑而不...
    開封第一講書人閱讀 58,671評(píng)論 1 293
  • 正文 為了忘掉前任,我火速辦了婚禮孽江,結(jié)果婚禮上讶坯,老公的妹妹穿的比我還像新娘番电。我一直安慰自己岗屏,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,699評(píng)論 6 392
  • 文/花漫 我一把揭開白布漱办。 她就那樣靜靜地躺著这刷,像睡著了一般。 火紅的嫁衣襯著肌膚如雪娩井。 梳的紋絲不亂的頭發(fā)上暇屋,一...
    開封第一講書人閱讀 51,562評(píng)論 1 305
  • 那天,我揣著相機(jī)與錄音洞辣,去河邊找鬼咐刨。 笑死,一個(gè)胖子當(dāng)著我的面吹牛扬霜,可吹牛的內(nèi)容都是我干的定鸟。 我是一名探鬼主播,決...
    沈念sama閱讀 40,309評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼著瓶,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼联予!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起材原,我...
    開封第一講書人閱讀 39,223評(píng)論 0 276
  • 序言:老撾萬榮一對(duì)情侶失蹤沸久,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后余蟹,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體卷胯,經(jīng)...
    沈念sama閱讀 45,668評(píng)論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,859評(píng)論 3 336
  • 正文 我和宋清朗相戀三年威酒,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了窑睁。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,981評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡兼搏,死狀恐怖卵慰,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情佛呻,我是刑警寧澤裳朋,帶...
    沈念sama閱讀 35,705評(píng)論 5 347
  • 正文 年R本政府宣布,位于F島的核電站,受9級(jí)特大地震影響鲤嫡,放射性物質(zhì)發(fā)生泄漏送挑。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,310評(píng)論 3 330
  • 文/蒙蒙 一暖眼、第九天 我趴在偏房一處隱蔽的房頂上張望惕耕。 院中可真熱鬧,春花似錦诫肠、人聲如沸司澎。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,904評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)挤安。三九已至,卻和暖如春丧鸯,著一層夾襖步出監(jiān)牢的瞬間蛤铜,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 33,023評(píng)論 1 270
  • 我被黑心中介騙來泰國(guó)打工丛肢, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留围肥,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 48,146評(píng)論 3 370
  • 正文 我出身青樓蜂怎,卻偏偏與公主長(zhǎng)得像穆刻,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子派敷,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,933評(píng)論 2 355

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

  • //便利中間部分時(shí)間的子視圖 計(jì)算并排不位置 for (int i=0;i<self.containerView....
    再也不要見閱讀 407評(píng)論 0 0
  • 如果一個(gè)界面創(chuàng)建三個(gè)View篮愉,要求第一行兩個(gè)View等高等寬腐芍,第三個(gè)View與上面兩個(gè)View等高,無論是橫屏還...
    學(xué)長(zhǎng)的日常閱讀 18,576評(píng)論 0 27
  • 一试躏、代碼添加約束順序### 創(chuàng)建控件 將控件添加到父控件中 關(guān)閉需要添加約束的控件的Autoresizing屬性 ...
    Mitchell閱讀 1,031評(píng)論 0 5
  • 文/阿關(guān) 侄子婚期將近猪勇,三哥來電詢問歸期,電話中特意叮囑要帶著愛人颠蕴、孩子一同前往泣刹,遺憾的是有太多的羈絆,只能孤身前...
    捌天閱讀 758評(píng)論 0 2
  • 人生的路是自己走犀被,沒有誰(shuí)能永遠(yuǎn)陪著你椅您,所以,你若不勇敢寡键,你能指望誰(shuí)替你堅(jiān)強(qiáng)掀泳?別總擺出那副柔弱的模樣,這個(gè)世界不會(huì)因...
    青_澀閱讀 194評(píng)論 0 0