ios设置导航栏的背景颜色或背景图片

news/2025/1/16 18:03:58/

设置背景颜色:

self.navigationController.navigationBar.barTintColor = [UIColor greenColor]; // 把导航栏设为绿色


设置背景图片:

self.navigationController.navigationBar.backgroundColor = [UIColor clearColor];

self.navigationController.navigationBar.barTintColor = [UIColor clearColor];

[self.navigationController.navigationBar setBackgroundImage: [UIImage imageNamed:@"me_navbar_background.png"] forBarMetrics:UIBarMetricsDefault];


http://www.ppmy.cn/news/327809.html

相关文章

iOS添加背景图片方法

// 添加背景 UIImageView *bgView [[UIImageView alloc] initWithFrame:self.view.frame]; [bgView setImage:[UIImage imageNamed:"bg.jpg"]]; [self.view addSubview:bgView]; [self.view sendSubviewToBack:bgView];

ios导航栏的背景图片设置

/*导航栏中背景图片的设置*/ //self.navigationController.navigationBar.tintColor[UIColor colorWithPatternImage:[UIImage imageNamed:"navbar2.png"]]; [self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:"navbar2.png&q…

iOS UIView 添加背景图片

UIView 添加背景图片: 第一种方法(不推荐): 用的UIView的设置背景颜色方法,用图片做图案颜色,然后传给背景颜色。 [self.view setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:”“]]]&am…

android怎样换背景图片,手机怎么抠图换背景 安卓和iPhone一键抠图换背景教程

原标题:手机怎么抠图换背景 安卓和iPhone一键抠图换背景教程 转自:电脑百事网 果粉俱乐部原创 平时很多小伙伴都喜欢拍照嗮图,而很多时候如果想要照片更美,抠图换背景会起到立竿见影的效果。那么,手机怎么抠图换背景&a…

iphone 设置视图背景图片

方法一,使用一个UIImageView实例做子视图,并且放最后面 Objective-c代码 - (void)setBackgroundImage { NSLog("setting bg image"); UIImageView *customBackground [[UIImageView alloc] initWithImage:[UIImage imageNamed:&q…

设置ios窗口的背景图片

设置背景图片: UIImageView *tableBg [[UIImageView alloc] initWithImage:[UIImage imageNamed:"login.jpg"]]; [self.tableView setBackgroundView:tableBg]; [tableBg release];

移动端安卓和苹果手机背景图片显示不全的问题

最近写移动端的页面遇到一个坑,使用chrome浏览器调试iphone6,背景图片显示完整,但是在小米手机端浏览发现图片显示不完全; 解决办法: 安卓手机和苹果手机分辨率不同,在苹果手机上显示的是普通的2x图片&…

ios 改变背景图片

/var/mobile/Library/LockBackground.jpg /User/Library/LockBackground.png and then call notify_post(" com.apple.language.changed") 其实发别的改变也一样 就是通知系统有改变 他就会重新刷一次 这样才能载入你重写的图片