material-components_materia.../components/BottomNavigation/examples/BottomNavigationBarControllerExampleViewController.swift
Robert Moore e553272885
[BottomNavigation] Make Controller available on iOS 8. (#6719)
Adds constraints safe for use on iOS 8. This removes the availability
checks previously set on the MDCBottomNavigationBarController class that
may have been causing CocoaPods lint errors.

Related to #6608
2019-02-27 20:47:43 -05:00

73 lines
2.6 KiB
Swift

// Copyright 2018-present the Material Components for iOS authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import UIKit
import MaterialComponentsBeta.MaterialBottomNavigationBeta
import MaterialComponents.MaterialBottomNavigation_ColorThemer
import MaterialComponents.MaterialBottomNavigation_TypographyThemer
class BottomNavigationControllerExampleViewController: MDCBottomNavigationBarController {
public var colorScheme: MDCColorScheming = MDCSemanticColorScheme() {
didSet {
apply(colorScheme: colorScheme)
}
}
public var typographyScheme: MDCTypographyScheming = MDCTypographyScheme() {
didSet {
apply(typographyScheme: typographyScheme)
}
}
override func viewDidLoad() {
super.viewDidLoad()
let viewController1 = UIViewController()
viewController1.view.backgroundColor = colorScheme.primaryColor
viewController1.tabBarItem = UITabBarItem(title: "Item 1", image: UIImage(named: "Home"), tag: 0)
let viewController2 = UIViewController()
viewController2.view.backgroundColor = colorScheme.secondaryColor
viewController2.tabBarItem = UITabBarItem(title: "Item 2", image: UIImage(named: "Favorite"), tag: 1)
let viewController3 = UIViewController()
viewController3.view.backgroundColor = colorScheme.surfaceColor
viewController3.tabBarItem = UITabBarItem(title: "Item 3", image: UIImage(named: "Search"), tag: 2)
viewControllers = [ viewController1, viewController2, viewController3 ]
}
class func catalogMetadata() -> [String: Any] {
return [
"breadcrumbs": ["Bottom Navigation", "Bottom Navigation Controller"],
"presentable": false
]
}
}
// MARK: Private Functions
extension BottomNavigationControllerExampleViewController {
fileprivate func apply(colorScheme: MDCColorScheming) {
MDCBottomNavigationBarColorThemer.applySemanticColorScheme(colorScheme, toBottomNavigation: self.navigationBar)
}
fileprivate func apply(typographyScheme: MDCTypographyScheming) {
MDCBottomNavigationBarTypographyThemer.applyTypographyScheme(typographyScheme,
to: self.navigationBar)
}
}