• IOS6、IOS7导航栏适配问题


    #pragma mark 一个类只会调用一次

    + (void)initialize

    {

        // 1.取出设置主题的对象

        UINavigationBar *navBar = [UINavigationBarappearance];

        UIBarButtonItem *barItem = [UIBarButtonItemappearance];

        

        // 2.设置导航栏的背景图片

        NSString *navBarBg = nil;

        if (iOS7) { // iOS7

            navBarBg = @"NavBar64";

            

            // 设置导航栏的渐变色为白色(iOS7中返回箭头的颜色变为这个颜色:白色)

            navBar.tintColor = [UIColor whiteColor];

        } else { // iOS7

            navBarBg = @"NavBar";

            [UIApplicationsharedApplication].statusBarStyle = UIStatusBarStyleBlackOpaque;

            

            // 设置导航栏按钮的背景图片

            [barItem setBackgroundImage:[UIImageimageNamed:@"NavButton"] forState:UIControlStateNormalbarMetrics:UIBarMetricsDefault];

            [barItem setBackgroundImage:[UIImageimageNamed:@"NavButtonPressed"] forState:UIControlStateHighlightedbarMetrics:UIBarMetricsDefault];

            

            // 设置导航栏返回按钮的背景图片

            [barItem setBackButtonBackgroundImage:[UIImageimageNamed:@"NavBackButton"] forState:UIControlStateNormalbarMetrics:UIBarMetricsDefault];

            [barItem setBackButtonBackgroundImage:[UIImageimageNamed:@"NavBackButtonPressed"] forState:UIControlStateHighlightedbarMetrics:UIBarMetricsDefault];

        }

        

        [navBar setBackgroundImage:[UIImageimageNamed:navBarBg] forBarMetrics:UIBarMetricsDefault];

        

        // 3.设置导航栏标题颜色为白色

        [navBar setTitleTextAttributes:@{

                UITextAttributeTextColor : [UIColorwhiteColor]

        }];

        

        // 4.设置导航栏按钮文字颜色为白色

        [barItem setTitleTextAttributes:@{

                UITextAttributeTextColor : [UIColorwhiteColor],

                UITextAttributeFont : [UIFontsystemFontOfSize:13]

        }forState:UIControlStateNormal];

    }

    #pragma mark 控制状态栏的样式

    /*

     状态栏的管理:

     1> iOS7之前:UIApplication

     2> iOS7开始:交给对应的控制器去管理

     */

    - (UIStatusBarStyle)preferredStatusBarStyle

    {

        // 白色样式

        returnUIStatusBarStyleLightContent;

    }

  • 相关阅读:
    Apache服务器的安装与配置
    更改Apache默认起始(索引)页面:DirectoryIndex
    cmd那个命令是查看端口情况的?
    apache不能启动LoadModule php5_module modules/ph
    AddHandler php5-script .phpAddType text/html .php和AddType application/x-httpd-php .php的区别?
    动态创建二维vector数组 C和C++ 及指针与引用的区别
    理解KMP
    C++中cin、cin.get()、cin.getline()、getline()、gets()等函数的用法----细节决定成败 (sort用法)
    数据库索引
    fork()函数详解
  • 原文地址:https://www.cnblogs.com/changxs/p/3515364.html
Copyright © 2020-2023  润新知