ios 怎么修改navigationitem的颜色
1个回答
展开全部
这个要用自定义的view 才能设置:方法如下
//设置标题
// self.title = @"title1";//修改title 会改变navigationItem。title ,但反之不会,一般设置title用此方法就好了
// self.navigationController.title = @"title2";
//
//自定义标题
// UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 44)];
// view.backgroundColor = [UIColor redColor];
UILabel *title = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 44)];
title.text = @"title3";
title.textAlignment = NSTextAlignmentCenter;
title.textColor = [UIColor redColor];
self.navigationItem.titleView = title;
//设置标题
// self.title = @"title1";//修改title 会改变navigationItem。title ,但反之不会,一般设置title用此方法就好了
// self.navigationController.title = @"title2";
//
//自定义标题
// UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 44)];
// view.backgroundColor = [UIColor redColor];
UILabel *title = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 44)];
title.text = @"title3";
title.textAlignment = NSTextAlignmentCenter;
title.textColor = [UIColor redColor];
self.navigationItem.titleView = title;
MacPaw
2024-09-20 广告
2024-09-20 广告
试试macOS Sequoia的终极清理优化软件,CleanMyMac X是一款能让用户省心的 Mac 优化工具。它能删除多达 29 种垃圾文件,从而让 macOS 保持优化和快速的运行。它是 Mac 用户装机必备的应用程序之一。通过 3 ...
点击进入详情页
本回答由MacPaw提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询