-
Notifications
You must be signed in to change notification settings - Fork 0
/
TabbarController.swift
99 lines (89 loc) · 3.65 KB
/
TabbarController.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
//
// TabbarController.swift
// PoocoinV2
//
// Created by Pozdnyshev Maksim on 6/29/21.
//
import UIKit
class TabbarController: UITabBarController {
override func viewDidLoad() {
super.viewDidLoad()
viewControllers = [
mainViewController(),
chartsViewController(),
favoritesViewController(),
walletCheckerController(),
]
tabBar.barTintColor = .mainBackgorund
tabBar.tintColor = .white
}
private func mainViewController() -> UIViewController {
let controller = MainPageController()
controller.tabBarItem = UITabBarItem(
title: "Main",
image: UIImage(named: "home"),
selectedImage: UIImage(named: "home")
)
let navigationController = UINavigationController(rootViewController: controller)
navigationController.navigationBar.barTintColor = .mainBackgorund
navigationController.navigationBar.tintColor = .white
navigationController.navigationBar.prefersLargeTitles = true
return navigationController
}
private func chartsViewController() -> UIViewController {
let controller = ChartStartController()
controller.tabBarItem = UITabBarItem(
title: "Charts",
image: UIImage(named: "charts"),
selectedImage: UIImage(named: "charts")
)
controller.navigationItem.title = "Charts"
let navigationController = UINavigationController(rootViewController: controller)
navigationController.navigationBar.prefersLargeTitles = true
navigationController.navigationBar.barTintColor = .mainBackgorund
navigationController.navigationBar.tintColor = .white
navigationController.navigationBar.largeTitleTextAttributes = [
.foregroundColor: UIColor.white
]
navigationController.navigationBar.titleTextAttributes = [
.foregroundColor: UIColor.white
]
return navigationController
}
private func favoritesViewController() -> UIViewController {
let controller = FavoritesController()
controller.tabBarItem = UITabBarItem(
title: "Favourites",
image: UIImage(named: "heart"),
selectedImage: UIImage(named: "heart")
)
let navigationController = UINavigationController(rootViewController: controller)
navigationController.navigationBar.barTintColor = .mainBackgorund
navigationController.navigationBar.tintColor = .white
return navigationController
}
private func walletController() -> UIViewController {
let controller = BalancesViewController()
controller.tabBarItem = UITabBarItem(
title: "Wallet",
image: UIImage(named: "wallet"),
selectedImage: UIImage(named: "wallet")
)
let navigationController = UINavigationController(rootViewController: controller)
navigationController.navigationBar.barTintColor = .mainBackgorund
navigationController.navigationBar.tintColor = .white
return navigationController
}
private func walletCheckerController() -> UIViewController {
let controller = WalletCheckerController()
controller.tabBarItem = UITabBarItem(
title: "Checker",
image: UIImage(named: "wallet"),
selectedImage: UIImage(named: "wallet")
)
let navigationController = UINavigationController(rootViewController: controller)
navigationController.navigationBar.barTintColor = .mainBackgorund
navigationController.navigationBar.tintColor = .white
return navigationController
}
}