博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 设置导航栏的颜色和导航栏上文字的颜色
阅读量:5318 次
发布时间:2019-06-14

本文共 1667 字,大约阅读时间需要 5 分钟。

                          

#import 
@interface AppDelegate : UIResponder
@property (strong, nonatomic) UIWindow *window;@end
#import "AppDelegate.h"#import "KeyViewController.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];    // Override point for customization after application launch.    self.window.backgroundColor = [UIColor whiteColor];    //初始化导航    UINavigationController *navi = [[UINavigationController alloc] initWithRootViewController:[[KeyViewController alloc] init]];        //设置导航栏的背景颜色(iOS7之后)    [[UINavigationBar appearance] setBarTintColor:[[UIColor alloc] initWithRed:133/255.0 green:0 blue:47/255.0 alpha:1]];        //使用背景图片来设置导航栏的颜色(iOS7之后)//    [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"顶栏背景"] forBarMetrics:UIBarMetricsDefault];        //设置导航栏上文字的颜色(iOS7之后)    [[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor orangeColor]}];    self.window.rootViewController = navi;        [self.window makeKeyAndVisible];    return YES;}@end
#import 
@interface KeyViewController : UIViewController@end
#import "KeyViewController.h"@interface KeyViewController ()@end@implementation KeyViewController- (void)viewDidLoad {    [super viewDidLoad];    self.title = @"提取现金";    }- (void)didReceiveMemoryWarning {    [super didReceiveMemoryWarning];    // Dispose of any resources that can be recreated.}@end

 

转载于:https://www.cnblogs.com/lantu1989/p/5075861.html

你可能感兴趣的文章
2018-2019-2 20165314『网络对抗技术』Exp5:MSF基础应用
查看>>
SecureCRT的使用方法和技巧(详细使用教程)
查看>>
自建数据源(RSO2)、及数据源增强
查看>>
关于View控件中的Context选择
查看>>
2018icpc徐州OnlineA Hard to prepare
查看>>
使用命令创建数据库和表
查看>>
在16aspx.com上下了一个简单商品房销售系统源码,怎么修改它的默认登录名和密码...
查看>>
linux下Rtree的安装
查看>>
多米诺骨牌
查看>>
PHP魔术方法之__call与__callStatic方法
查看>>
【模板】对拍程序
查看>>
【转】redo与undo
查看>>
Django 模型层
查看>>
dedecms讲解-arc.listview.class.php分析,列表页展示
查看>>
安卓当中的线程和每秒刷一次
查看>>
wpf样式绑定 行为绑定 事件关联 路由事件实例
查看>>
TCL:表格(xls)中写入数据
查看>>
Oracle事务
查看>>
String类中的equals方法总结(转载)
查看>>
标识符
查看>>