簡要

上一篇已經完成主要的TabBar
接下來把NavigationBar設定好
再利用TabBarController把左膀右臂接起來
整個底層架構就基本完整了

UINavigationController

這裡直接在viewDidLoad做設定就可了
如果你要讓NavigationBar變成背景透明的話
使用.backgroundColor = .clear是無效的

無法讓NavigationBar 背景透明

UINavigationBar.appearance().backgroundColor = .clear

可以讓NavigationBar 背景透明

UINavigationBar.appearance().setBackgroundImage(UIImage(), for: .default)

Demo
https://ithelp.ithome.com.tw/upload/images/20190918/20112271jaijn2PE4J.png

如果你連下方的分隔線都不要的話
還可以再更乾淨
只要在設置shadowImage就可以去除線條

UINavigationBar.appearance().shadowImage = UIImage()

Demo
https://ithelp.ithome.com.tw/upload/images/20190918/20112271JjHAwC8plt.png

UITabBarController

UITabBarController部分將你要使用得controller加入進去
加入前先使用Navigation包過一次
在使用self.addChild添加
這樣就能同時擁有TabBarNavigationBar

override func viewDidLoad() {
    super.viewDidLoad()
    setUpChildViewControllers()
    setUpTabBar ()
}

setUpChildViewControllers

造順序添加 controller, image (顯示圖片), seletedImage (按下時顯示圖片), title (標題)

func setUpChildViewControllers() {
    addChildViewController(childController: Test1ViewController(), image: "wallet", seletedImage: "wallet", title: "1")
    addChildViewController(childController: Test2ViewController(), image: "wallet", seletedImage: "wallet", title: "2")
    addChildViewController(childController: Test1ViewController(), image: "wallet", seletedImage: "wallet", title: "1")
    addChildViewController(childController: Test2ViewController(), image: "wallet", seletedImage: "wallet", title: "2")
}
func addChildViewController(childController: UIViewController, image: String, seletedImage: String, title: String) {
    childController.title = title
    childController.tabBarItem.setTitleTextAttributes([NSAttributedString.Key.foregroundColor: UIColor.init(red: 176.0/255.0, green: 196.0/255.0, blue: 222.0/255.0, alpha: 1)], for: .selected)
    childController.tabBarItem.image = UIImage.init(named: image)
    childController.tabBarItem.selectedImage = UIImage.init(named: seletedImage)
    let navigationController = JGNavigationController.init(rootViewController: childController)
    navigationController.navigationBar.barTintColor = .white
    self.addChild(navigationController)
}

setUpTabBar

tabbar設置為自己客製化的TabBar
所設定的顏色、特效之類的才會顯示

func setUpTabBar (){
    self.setValue(JGTabBar(), forKey: "tabBar")
}

Demo
全部設置完畢就會有上下的Bar
https://ithelp.ithome.com.tw/upload/images/20190918/20112271xwCrTzMt2V.png

Uber eat 仿製

**Uber eat APP **
https://ithelp.ithome.com.tw/upload/images/20190918/20112271v9DThNokZh.png

這裡上方Bar背景是使用白色底
且保留下方底線
下方4個icon
title全部隱藏
icon部分因為沒有原圖
改用螢幕截圖單獨取出來
比對一下應該是沒有差太多

原生
https://ithelp.ithome.com.tw/upload/images/20190918/20112271XcXjIxzKu4.png
仿製
https://ithelp.ithome.com.tw/upload/images/20190918/20112271RPeTJQ73ZF.png


Categorized in: