UIImage *backButtonImage = [[UIImage imageNamed:@"navbar_ic_back.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 30, 30, 30)];
[[UIBarButtonItem appearance] setBackButtonBackgroundImage:backButtonImage forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
[appearance setBackButtonBackgroundImage:leftButton
forState:1
barMetrics:UIBarMetricsDefault];
UIImage *image = [UIImage imageNamed:@"navbar_ic_back.png"];
image = [image imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
navigationBar.backIndicatorImage = image;
navigationBar.backIndicatorTransitionMaskImage = image;
navigationBar.tintColor = [UIColor whiteColor];
//title加阴影
NSShadow *shadow = [[NSShadow alloc] init];
shadow.shadowColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.8];
shadow.shadowOffset = CGSizeMake(0, 1);
[navigationBar setTitleTextAttributes: [NSDictionary dictionaryWithObjectsAndKeys: [UIColor colorWithRed:245.0/255.0 green:245.0/255.0 blue:245.0/255.0 alpha:1.0], NSForegroundColorAttributeName, shadow, NSShadowAttributeName, [UIFont fontWithName:@"HelveticaNeue-CondensedBlack"
size:21.0], NSFontAttributeName, nil]];
本文介绍了如何使用 Objective-C 自定义 iOS 应用程序中的导航栏样式,包括设置返回按钮的背景图片、为导航栏的标题添加阴影效果以及调整字体颜色等细节。

9210

被折叠的 条评论
为什么被折叠?



