zoukankan      html  css  js  c++  java
  • navigationController

        [self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];

        self.navigationController.navigationBar.shadowImage = [UIImage new];

        self.navigationController.navigationBar.translucent = YES; 

        self.navigationController.navigationBar.translucent =YES;
        [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];  // 背景透明设置
     
     

        [self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor    blackColor],NSFontAttributeName:[UIFont systemFontOfSize:19.0]}];  // 字体设置

        self.navigationController.navigationBar.tintColor = ColorGreen; 

        self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"nav_masterBackButton"] style:UIBarButtonItemStylePlain target:self action:@selector(popSelfVC)];

  • 相关阅读:
    新男人八题---AStringGame
    hihocoder1457
    SPOJ
    后缀自动机
    牛客练习赛13D
    Educational Codeforces Round 38
    Binary Differences
    laravel 带条件的分页查询
    url添加时间戳
    安卓无法上传照片
  • 原文地址:https://www.cnblogs.com/Milo-CTO/p/4415114.html
Copyright © 2011-2022 走看看