美文网首页
UIImagePickerController

UIImagePickerController

作者: 小暖风 | 来源:发表于2017-09-25 16:49 被阅读20次

    去相册选照片时,导航的背景色和页面的背景色不一致,影响美观,需修改。

    修改方式:

    #pragma mark----UINavigationControllerDelegate

    - (void)navigationController:(UINavigationController*)navigationController willShowViewController:(UIViewController*)viewController animated:(BOOL)animated

    {

    //导航背景色

    navigationController.navigationBar.barTintColor=Color_87BA4B;

    //右侧取消按钮颜色

    [navigationController.navigationBarsetTintColor:[UIColorwhiteColor]];

    //标题颜色

    [navigationController.navigationBarsetTitleTextAttributes:@{

    NSForegroundColorAttributeName: [UIColorwhiteColor],NSFontAttributeName:[UIFontsystemFontOfSize:18.0]

    }];

    }

    相关文章

      网友评论

          本文标题:UIImagePickerController

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