MViewController.swift
841 Bytes
//
// MViewController.swift
// YouerLiveVideo
//
// Created by 左丞 on 2017/5/16.
// Copyright © 2017年 左丞. All rights reserved.
//
import UIKit
class MViewController: UITabBarController {
override class func initialize() {
var attrs = [String: NSObject]()
attrs[NSForegroundColorAttributeName] = Theme.topBarColor()
// 设置tabBar字体颜色
UITabBarItem.appearance().setTitleTextAttributes(attrs, for:.selected)
}
override func viewDidLoad() {
super.viewDidLoad()
self.tabBar.tintColor=Theme.topBarColor()
tabBar.barTintColor=UIColor.white
tabBarController?.tabBar.isHidden=true
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
}
extension MViewController:UINavigationControllerDelegate{
}