22 lines
439 B
Swift
22 lines
439 B
Swift
//
|
|
// NavigationController.swift
|
|
// pocloud
|
|
//
|
|
// Created by Patrick McDonagh on 5/29/18.
|
|
// Copyright © 2018 patrickjmcd. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import ChameleonFramework
|
|
|
|
class NavigationController: UINavigationController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
// Do any additional setup after loading the view.
|
|
self.navigationBar.tintColor = UIColor.flatSkyBlue()
|
|
}
|
|
|
|
}
|