美文网首页
iOS修改UIDocumentPickerViewControl

iOS修改UIDocumentPickerViewControl

作者: 男人宫 | 来源:发表于2021-06-09 14:48 被阅读0次

    解决办法:自定义ViewController继承UIDocumentPickerViewController,在viewWillAppear中修改即可

    - (void)viewWillAppear:(BOOL)animated
    {
        [super viewWillAppear:animated];
        [UINavigationBar appearance].tintColor = Color_ButtonDeepBlue;
        
    }
    

    相关文章

      网友评论

          本文标题:iOS修改UIDocumentPickerViewControl

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