forked from shadowfacts/Tusker
45 lines
1.4 KiB
Swift
45 lines
1.4 KiB
Swift
//
|
|
// MainTabBarViewController.swift
|
|
// Tusker
|
|
//
|
|
// Created by Shadowfacts on 8/21/18.
|
|
// Copyright © 2018 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class MainTabBarViewController: UITabBarController, UITabBarControllerDelegate {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
self.delegate = self
|
|
|
|
viewControllers = [
|
|
embedInNavigationController(TimelineTableViewController(for: .home)),
|
|
embedInNavigationController(NotificationsTableViewController()),
|
|
ComposeViewController(),
|
|
embedInNavigationController(TimelineTableViewController(for: .public(local: false))),
|
|
embedInNavigationController(MyProfileTableViewController()),
|
|
]
|
|
}
|
|
|
|
func embedInNavigationController(_ vc: UIViewController) -> UINavigationController {
|
|
if let vc = vc as? UINavigationController {
|
|
return vc
|
|
} else {
|
|
return UINavigationController(rootViewController: vc)
|
|
}
|
|
}
|
|
|
|
func tabBarController(_ tabBarController: UITabBarController, shouldSelect viewController: UIViewController) -> Bool {
|
|
if viewController is ComposeViewController {
|
|
let compose = embedInNavigationController(ComposeViewController())
|
|
tabBarController.present(compose, animated: true)
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
}
|