在Mainstoryboard和Simulator中,您可以在导航栏和按钮上获得纯色。但是如果你在真正的iPhone或iPad上运行,你会得到这种带有颜色的白色渐变。有没有办法将其删除。
iPhone图片 改进了图片
答案 0 :(得分:10)
使用第一种方法,您一次只能自定义一个导航栏。因此,如果您想自定义您将使用的导航栏的所有实例;
[[UINavigationBar外观] setTintColor:myColor];
或者,如果您想根据自己通常使用的位置和放置位置设置自定义navigationBar,
[[UINavigationBar appearanceWhenContainedIn:[UIViewController class], nil]
setTintColor:myNavBarColor];
这将修改视图控制器内的所有现有导航控制器。
但是在ios5之前,为某些特定的视图控制器设置导航栏色调颜色更加容易,它只是一行代码;
[self.navigationController.navigationBar setTintColor:[UIColor whiteColor]];
但是,如果你创建的导航栏不是导航控制器的一部分而只是一个视图控制器,那么保留一个插座并按上面的方式自定义它,或者
[self.navigationBar setTintColor:[UIColor violetColor]];
在viewDidLoad;
UIImage *backgroundImage = [self drawImageWithColor:[UIColor blueColor]];
[self.navigationBar setBackgroundImage:backgroundImage forBarMetrics:UIBarMetricsDefault];
-(UIImage*)drawImageWithColor:(UIColor*)color{
NSFileManager *fileManager = [NSFileManager defaultManager];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *imagePath;
imagePath = [[paths lastObject] stringByAppendingPathComponent:@"NavImage.png"];
if([fileManager fileExistsAtPath:imagePath]){
return [UIImage imageWithData:[NSData dataWithContentsOfFile:imagePath]];
}
UIGraphicsBeginImageContext(CGSizeMake(320, 40));
[color setFill];
UIRectFill(CGRectMake(0, 0, 320, 40));
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
NSData *data = UIImagePNGRepresentation(image);
[data writeToFile:imagePath atomically:YES];
return image;
}