iOS修改系统相册页面的导航条颜色和字体的颜色
作者:
男人宫 | 来源:发表于
2017-03-21 16:02 被阅读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]};
}
}
如果要把字体改成中文只需在plist中把Localization native development region 的en状态换成chinese即可
本文标题:iOS修改系统相册页面的导航条颜色和字体的颜色
本文链接:https://www.haomeiwen.com/subject/vijgnttx.html
网友评论