Subclassing UINavigationBar… wie verwende ich es in UINavigationController?
Ich wollte UINavigationBar in eine Unterklasse unterteilen (um eine benutzerdefinierte Hintergrundbild- und Textfarbe festzulegen) und diese für alle Navigationsleisten in meiner App verwenden. In den API-Dokumenten für UINavigationController scheint die Navigationsleiste schreibgeschützt zu sein:
@ property (nichtatomar, schreibgeschützt) UINavigationBar * navigationBar
Gibt es eine Möglichkeit, eine benutzerdefinierte UINavigationBar in meinen UIViewControllern zu verwenden? Ich weiß, dass andere Apps benutzerdefinierte Navigationsleisten erstellt haben, wie z. B. flickr:
http: //img.skitch.com/20100520-bpxjaca11h5xne5yakjdc2m6xx.pn
Hier ist meine UINavigationBar-Unterklasse:
#import <UIKit/UIKit.h>
@interface MyNavigationBar : UINavigationBar <UINavigationBarDelegate> {
}
@end
die Umsetzun
#import "MyNavigationBar.h"
@implementation MyNavigationBar
- (id)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
// Initialization code
}
return self;
}
- (void)drawRect:(CGRect)rect {
// override the standard background with our own custom one
UIImage *image = [[UIImage imageNamed:@"navigation_bar_bgd.png"] retain];
[image drawInRect:rect];
[image release];
}
#pragma mark -
#pragma mark UINavigationDelegate Methods
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated{
// use the title of the passed in view controller
NSString *title = [viewController title];
// create our own UILabel with custom color, text, etc
UILabel *titleView = [[UILabel alloc] init];
[titleView setFont:[UIFont boldSystemFontOfSize:18]];
[titleView setTextColor:[UIColor blackColor]];
titleView.text = title;
titleView.backgroundColor = [UIColor clearColor];
[titleView sizeToFit];
viewController.navigationItem.titleView = titleView;
[titleView release];
viewController.navigationController.navigationBar.tintColor = [UIColor colorWithRed:0.1 green:0.2 blue:0.3 alpha:0.8];
}
- (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated{
}
- (void)dealloc {
[super dealloc];
}
@end
Ich weiß, dass ich eine Kategorie verwenden kann, um das Hintergrundbild zu ändern, aber ich möchte trotzdem in der Lage sein, die Textfarbe des Titels der Navigationsleiste festzulegen.
@implementation UINavigationBar (CustomImage)
- (void)drawRect:(CGRect)rect {
UIImage *image = [UIImage imageNamed: @"navigation_bar_bgd.png"];
[image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}
@end
irgendwelche Vorschläge oder andere Lösungen? Ich möchte im Grunde einen hellen Hintergrund und dunklen Text wie Flickr's App-Navigationsleisten erstellen.