为什么这不起作用?我想升级UINavigationBar所以在xcode中我点击新文件 - >客观c类, class:CustomNavBar 子类:UINavigationBar
然后在导航控制器场景下的故事板中,我点击导航栏并将其类设置为CustomNavBar。
然后我进入我的CustomNaVBar类并尝试添加自定义图像背景。
在initWithFram方法中我添加了这个:
- (id)initWithFrame:(CGRect)frame
{
NSLog(@"Does it get here?"); //no
self = [super initWithFrame:frame];
if (self) {
// Initialization code
UIImage *image = [UIImage imageNamed:@"customNavBarImage.png"];
// [self setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];
[self setBackgroundColor:[UIColor colorWithPatternImage:image]];
[[UINavigationBar appearance] setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];
NSLog(@"Does this get called?"); //no
}
return self;
}
我在控制台上看不到任何输出。
相反,我这样做是为了自定义UINavBar,但我觉得它不像子类化那样正确。在我的第一个视图的viewDidLoad中,我添加了这一行:
- (void)viewDidLoad
{
[super viewDidLoad];
if ([self.navigationController.navigationBar respondsToSelector:@selector(setBackgroundImage:forBarMetrics:)] ) {
UIImage *image = [UIImage imageNamed:@"customNavBarImage.png"];
[self.navigationController.navigationBar setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];
}
}
答案 0 :(得分:2)
我同意Ryan Perry的观点。除了他的回答:
您不应将此代码放在initWithFrame
中,而应将代码放入awakeFromNib
- (void) awakeFromNib {
// Initialization code
UIImage *image = [UIImage imageNamed:@"customNavBarImage.png"];
// [self setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];
[self setBackgroundColor:[UIColor colorWithPatternImage:image]];
[[UINavigationBar appearance] setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];
NSLog(@"Does this get called?"); //YES!!
}
答案 1 :(得分:1)
根据initWithFrame的文档:
如果使用Interface Builder设计界面,则随后从nib文件加载视图对象时,此方法将被 调用。重构nib文件中的对象,然后使用其initWithCoder:方法进行初始化,该方法修改视图的属性以匹配存储在nib文件中的属性。有关如何从nib文件加载视图的详细信息,请参阅“资源编程指南”。
这就是为什么这个方法不像你期望的那样被调用的原因。
答案 2 :(得分:1)
您必须使用initWithCoder:
方法,因为在从Storyboard加载UI对象时,这是指定的初始化程序。因此,请使用以下代码:
- (id)initWithCoder:(NSCoder *)aDecoder
{
NSLog(@"Does it get here?"); // now it does!
self = [super initWithCoder:aDecoder];
if (self) {
// Initialization code
// ...
NSLog(@"Does this get called?"); // yep it does!
}
return self;
}
答案 3 :(得分:0)
您可以按如下方式对导航栏进行子类化:
@interface CustomNavigationBar : UINavigationBar
@end
@implementation CustomNavigationBar
- (void)drawRect:(CGRect)rect
{
//custom draw code
}
@end
//Begin of UINavigationBar background customization
@implementation UINavigationBar (CustomImage)
//for iOS 5
+ (Class)class {
return NSClassFromString(@"CustomNavigationBar");
}
@end