美文网首页
修改 UIImagePickerController 选择照片状

修改 UIImagePickerController 选择照片状

作者: 施主小欣 | 来源:发表于2016-09-21 16:33 被阅读1437次

1、新建一个类继承自: UIImagePickerController

2、在新建的类中重写以下方法

#pragma mark status bar style
- (UIStatusBarStyle)preferredStatusBarStyle {
    return UIStatusBarStyleLightContent;
}

#pragma mark navigationBar tintColor & title textColor

- (instancetype)init {
self = [super init];
if (self) {
    self.navigationBar.tintColor = [UIColor whiteColor];
    [self.navigationBar setTitleTextAttributes:@{
                                                UITextAttributeTextColor : [UIColor whiteColor], UITextAttributeFont:[UIFont systemFontOfSize:17]
                                                }];
}
return self;
}

相关文章

网友评论

      本文标题:修改 UIImagePickerController 选择照片状

      本文链接:https://www.haomeiwen.com/subject/mguaettx.html