iOS修改系统相册页面的导航条颜色和字体的颜色
2017-03-21 本文已影响167人
男人宫
- 修改相册页面导航的背景颜色以及字体的颜色
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated{
if ([navigationController isKindOfClass:[UIImagePickerController class]]){ viewController.navigationController.navigationBar.translucent = NO;
viewController.edgesForExtendedLayout = UIRectEdgeNone;
viewController.navigationController.navigationBar.barTintColor = UIColorFromHex(0x13c2fb);
//title颜色和字体
viewController.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName:UIColorFromHex(0xffffff),
NSFontAttributeName:[UIFont systemFontOfSize:18]};
}
}