去掉导航左侧按钮系统默认的文字 只留 默认箭头
// 没有这句话 这会导致 切回应用 闪桌面的现象
[[UIBarButtonItem appearance]setBackButtonTitlePositionAdjustment:UIOffsetMake(0, -60) forBarMetrics:UIBarMetricsDefault];
设置导航头 的主题颜色
[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
设置导航的背景颜色
[[UITabBarItem appearance] setTitleTextAttributes:@{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Bold" size:10.0f],
NSForegroundColorAttributeName : NaviColor
} forState:UIControlStateSelected];