UINavigationBar 的样式在 UIViewController 中不起作用
Posted
技术标签:
【中文标题】UINavigationBar 的样式在 UIViewController 中不起作用【英文标题】:Styling for UINavigationBar not working in UIViewController 【发布时间】:2015-08-29 20:03:40 【问题描述】:我无法为我的 UINavigationBar 获取自定义样式,该样式设置在 UIViewController 的子类中。
我以前有过这个工作,但不知道为什么它不能在这里工作。
我的视图控制器中有以下代码:
- (void) loadView
[super loadView];
CGRect frame = self.view.bounds;
navBar = [[UINavigationBar alloc] initWithFrame:frame];
frame.size = [navBar sizeThatFits:frame.size];
[navBar setFrame:frame];
[navBar setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
// The following styling has no effect:
[navBar setBarTintColor:[UIColor blackColor]];
[navBar setTintColor:[UIColor grayColor]];
NSDictionary *navbarTitleTextAttributes = [NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor],NSForegroundColorAttributeName, nil];
[[UINavigationBar appearance] setTitleTextAttributes:navbarTitleTextAttributes];
UIBarButtonItem * button = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemPlay
target:self
action:@selector(nextView:)];
[[self navigationItem] setRightBarButtonItem:button];
[button release];
[navBar setItems:[NSArray arrayWithObject:self.navigationItem]];
[self.view addSubview:navBar];
【问题讨论】:
这是 UIViewController 的一个子类,让我们将这个子类 CustomViewController 称为“customviewcontroller”类型的所有视图控制器吗? 如果是这种情况,那么我可以向您展示如何以编程方式执行此操作,事实上,我现在有一个方法示例,但它很复杂,我不想要如果这不是你的意思,让你感到困惑 【参考方案1】:您不应该通过初始化一个新的 UINavigationBar 并将其添加为子视图来搞乱 UINavigationBar。相反,使用UINavigationBar.appearance
的可能性:
UINavigationBar.appearance.barTintColor = UIColor.blackColor;
UINavigationBar.appearance.tintColor = UIColor.grayColor;
请注意,这会改变应用程序中 UINavigationBar 的外观,因此 appearance
。如果这不是您想要的,您可以尝试:
self.navigationController.navigationBar.barTintColor = UIColor.blackColor;
self.navigationController.navigationBar.tintColor = UIColor.grayColor;
【讨论】:
谁告诉将其添加为子视图?在情节提要中,您可以设置 UINavigationBar 的类。 我都是以编程方式完成的,这里没有故事板。【参考方案2】:我使用子类化做了样式。示例:
#import <UIKit/UIKit.h>
@interface CustomNavBar : UINavigationBar
@end
#import "CustomNavBar.h"
@implementation CustomNavBar
- (void) drawRect:(CGRect)rect
CGRect rect1 = CGRectMake(0, 0, 1, 1);
UIGraphicsBeginImageContext(rect1.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context,
[[UIColor whiteColor] CGColor]);
CGContextFillRect(context, rect1);
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImage *bgImage = img;
[bgImage drawInRect:rect];
self.layer.masksToBounds = NO;
self.layer.shadowColor = [[UIColor blackColor] CGColor];
self.layer.shadowOffset = CGSizeMake(0.0, 0.1);
self.layer.shadowOpacity = 0.25;
self.layer.masksToBounds = NO;
self.layer.shouldRasterize = YES;
@end
【讨论】:
以上是关于UINavigationBar 的样式在 UIViewController 中不起作用的主要内容,如果未能解决你的问题,请参考以下文章
iOS-更改UINavigationBar样式+更改返回ButtonItem文字
在 UIToolbar 上创建左箭头按钮(如 UINavigationBar 的“后退”样式)
UIStatusBar样式与UINavigationBar一致