自定義UITabbarController進而自定義UITabbar射亏,這通常會是一個iOS項目開始的重要環(huán)節(jié)。在Swift的學習過程中,個人感覺雖說兩種語言的相似度很大,但是Swift依然在代碼風格上有著和OC很大的差異寡键。在總結(jié)了一些基本的用法之后,我嘗試使用Swift自定義UITabBarController和UITabbar雪隧,開啟這Siwft項目的關鍵一步西轩,首先展示一下效果圖:
第一步:創(chuàng)建Swift工程#
1.使用Xcode創(chuàng)建一個Swift初始項目ZSTestSwift,效果如下:
這里首先刪除工程文件下的ViewController.swift膀跌、Main.StoryBoard 和TARGETS下MainInterFace中的Main遭商,因為我們要使用純代碼的方式來創(chuàng)建標簽欄控制器,系統(tǒng)自帶Main.StoryBoard的xib形式的界面我們并不需要捅伤。
第二步:準備資源文件
1.在Assets.xcassets中存放標簽欄按鈕所需要的圖片資源
2.創(chuàng)建標簽配置Plist文件,并且在Plist文件中設置視圖控制器的類名巫玻、Title丛忆、標簽欄圖片等信息
這里做下說明祠汇,之所以創(chuàng)建這個plist文件是因為在之后創(chuàng)建視圖控制器和標簽按鈕時會有很大的便利性,而且也十分方便真實開發(fā)過程中的需求更改熄诡。
第三步:創(chuàng)建視圖控制器
自定義導航控制器和視圖控制器的父類可很,并且創(chuàng)建三個繼承于BaseViewController的視圖控制器(因為沒有過多復雜操作,這里省略代碼)凰浮,為之后創(chuàng)建標簽控制器做準備我抠。創(chuàng)建之后的效果如圖:
第四步:創(chuàng)建自定義的標簽視圖控制器和自定義UITabbar
1.創(chuàng)建自定義標簽控制器MainTabBarController,其關鍵代碼如下:
class MainTabBarController: UITabBarController, MainTabBarDelegate{
var tarbarConfigArr:[Dictionary<String,String>]! //標簽欄配置數(shù)組袜茧,從Plist文件中讀取
var mainTabBarView: MainTabBarView! //自定義的底部TabbarView
//MARK: - Life Cycle
override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?){
//1.調(diào)用父類的初始化方法
super.init(nibName: nil, bundle: nil)
//2.讀取Plist文件,初始化標簽欄配置數(shù)組
self.tarbarConfigArr = self.getConfigArrFromPlistFile()
//3.創(chuàng)建視圖控制器
self.createControllers()
//4.創(chuàng)建自定義TabBarView
self.createMainTabBarView()
}
required init?(coder aDecoder: NSCoder){
fatalError("init(coder:) has not been implemented")
}
override func viewDidLoad(){
super.viewDidLoad()
}
override func viewWillAppear(_ animated: Bool){
super.viewWillAppear(animated)
}
//MARK: - Private Methods
//讀取Tabbar配置文件
private func getConfigArrFromPlistFile() ->([Dictionary<String,String>]?){
let filePath: String? = Bundle.main.path(forResource: "TabBarConfig", ofType: "plist")
let plistData = NSDictionary(contentsOfFile: filePath ?? "")
let configArr = plistData?.object(forKey: "Tabbars") as? [Dictionary<String,String>]
return configArr;
}
//創(chuàng)建視圖控制器
private func createControllers(){
var controllerNameArray = [String]() //控制器類名數(shù)組
var controllerTitle = [String]() //控制器Title數(shù)組
for dictionary in self.tarbarConfigArr{
controllerNameArray.append(dictionary["ClassName"]!);
controllerTitle.append(dictionary["Title"]!)
guard controllerNameArray.count > 0 else{
print("error:控制器數(shù)組為空")
return
}
//初始化導航控制器數(shù)組
var nvcArray = [BaseNavigationViewController]()
//在Swift中, 通過字符串創(chuàng)建一個類, 那么必須加上命名空間clsName
let clsName = Bundle.main.infoDictionary!["CFBundleExecutable"] as! String
for i in 0...controllerNameArray.count-1 {
//動態(tài)獲取的命名空間是不包含.的, 所以需要我們自己手動拼接
let anyClass: AnyClass? = NSClassFromString(clsName + "." + controllerNameArray[i])
//將AnyClass類型轉(zhuǎn)換為BaseViewController類型菜拓,
//因為Swift中通過一個Class來創(chuàng)建一個對象, 必須告訴系統(tǒng)這個Class的確切類型
if let vcClassType = anyClass as? BaseViewController.Type {
let viewcontroller = vcClassType.init()
viewcontroller.title = controllerTitle[i]
let nav = BaseNavigationViewController(rootViewController:viewcontroller)
nvcArray.append(nav)
}
}
//設置標簽欄控制器數(shù)組
self.viewControllers = nvcArray
}
}
//創(chuàng)建自定義Tabbar
private func createMainTabBarView(){
//1.獲取系統(tǒng)自帶的標簽欄視圖的frame,并將其設置為隱藏
let tabBarRect = self.tabBar.frame;
self.tabBar.isHidden = true;
//3.使用得到的frame,和plist數(shù)據(jù)創(chuàng)建自定義標簽欄
mainTabBarView = MainTabBarView(frame: tabBarRect,tabbarConfigArr:tarbarConfigArr!);
mainTabBarView.delegate = self
self.view .addSubview(mainTabBarView)
}
//MARK: - MainTabBarDelegate
func didChooseItem(itemIndex: Int) {
self.selectedIndex = itemIndex
}
}
2.創(chuàng)建自定義的標簽欄MainTabBarView笛厦,其關鍵代碼如下:
//自定義標簽欄代理協(xié)議
protocol MainTabBarDelegate {
func didChooseItem(itemIndex:Int)
}
class MainTabBarView: UIView {
var delegate:MainTabBarDelegate? //代理,點擊item
var itemArray:[MainTabBarItem] = [] //標簽Item數(shù)組
init(frame: CGRect,tabbarConfigArr:[Dictionary<String,String>]) {
super.init(frame: frame)
self.backgroundColor = UIColor.white
let screenW = UIScreen.main.bounds.size.width
let itemWidth = screenW / CGFloat(tabbarConfigArr.count)
for i in 0..<tabbarConfigArr.count{
let itemDic = tabbarConfigArr[i];
let itemFrame = CGRect(x: itemWidth * CGFloat(i) , y: 0, width: itemWidth, height: frame.size.height)
//創(chuàng)建Item視圖
let itemView = MainTabBarItem(frame: itemFrame, itemDic:itemDic, itemIndex: i)
self.addSubview(itemView)
self.itemArray.append(itemView)
//添加事件點擊處理
itemView.tag = i
itemView.addTarget(self, action:#selector(self.didItemClick(item:)) , for: UIControlEvents.touchUpInside)
//默認點擊第一個,即首頁
if i == 0 {
self .didItemClick(item: itemView)
}
}
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
//點擊單個標簽視圖纳鼎,通過currentSelectState的屬性觀察器更新標簽item的顯示
//并且通過代理方法切換標簽控制器的當前視圖控制器
func didItemClick(item:MainTabBarItem){
for i in 0..<itemArray.count{
let tempItem = itemArray[i]
if i == item.tag{
tempItem.currentSelectState = true
}else{
tempItem.currentSelectState = false
}
}
//執(zhí)行代理方法
self.delegate?.didChooseItem(itemIndex: item.tag)
}
}
3.自定義的標簽欄ItemView視圖
class MainTabBarItem: UIControl {
var itemDic:Dictionary<String, String>
let imgView: UIImageView
let titleLabel: UILabel
//屬性觀察器
var currentSelectState = false {
didSet{
if currentSelectState {
//被選中
imgView.image = UIImage(named:itemDic["SelectedImg"]!)
titleLabel.textColor = UIColor.red
}else{
//沒被選中
imgView.image = UIImage(named: itemDic["NormalImg"]!)
titleLabel.textColor = UIColor.lightGray
}
}
}
init(frame:CGRect, itemDic:Dictionary<String, String>, itemIndex:Int) {
self.itemDic = itemDic
//布局使用的參數(shù)
let defaulutLabelH:CGFloat = 20.0 //文字的高度
var imgTop:CGFloat = 3
var imgWidth:CGFloat = 25
//中間的按鈕的布局參數(shù)做特殊處理
if itemIndex == 1{
imgTop = -20
imgWidth = 50
}
let imgLeft:CGFloat = (frame.size.width - imgWidth)/2
let imgHeight:CGFloat = frame.size.height - defaulutLabelH - imgTop
//圖片
imgView = UIImageView(frame: CGRect(x: imgLeft, y: imgTop, width:imgWidth, height:imgHeight))
imgView.image = UIImage(named: itemDic["NormalImg"]!)
imgView.contentMode = UIViewContentMode.scaleAspectFit
//title
titleLabel = UILabel(frame:CGRect(x: 0, y: frame.height - defaulutLabelH, width: frame.size.width, height: defaulutLabelH))
titleLabel.text = itemDic["Title"]!
titleLabel.textAlignment = NSTextAlignment.center
titleLabel.font = UIFont.systemFont(ofSize: 11)
titleLabel.textColor = UIColor.lightGray
super.init(frame: frame)
self.addSubview(imgView)
self.addSubview(titleLabel)
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
第五步:在Appdelegate中設置Window的根視圖控制器為自定義的標簽控制器
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
//創(chuàng)建App窗口
self.window = UIWindow(frame: UIScreen.main.bounds)
self.window?.backgroundColor = UIColor.orange
self.window?.makeKeyAndVisible()
//設置Window的根視圖控制器為自定義的標簽欄
self.window?.rootViewController = MainTabBarController();
return true
}
總結(jié):以上就是在OC代碼的基礎上,使用Swift來自定義標簽控制器的方法和步驟裳凸。在項目前期我們以自定義的方式來創(chuàng)建標簽欄贱鄙,這也是為了后期應對更加復雜的需求做伏筆,比如增加新的控制器我們只需要修改plist配置文件的屬性創(chuàng)建相應的視圖控制器就可以姨谷,這樣就避免了修改大量代碼逗宁。
最后是Demo的鏈接:https://github.com/DreamcoffeeZS/Swift_CustomTabbar.git, 以供參考梦湘。