在iOs4
我使用這個片段自定義導航欄在iOS 5中
#import "UINavigationBar+CustomImage.h"
@implementation UINavigationBar (CustomImage)
- (void)drawRect:(CGRect)rect {
// Drawing code
UIImage *image = [[UIImage imageNamed:@"header.png"] retain];
[image drawInRect:CGRectMake(0, 0,self.frame.size.width , self.frame.size.height)];
[image release];
}
@end
創建一個自定義導航欄,這是很好的在我的應用程序的iOS4。現在我想在iOs5
中運行這個問題,問題是自定義導航欄沒有以我想要的方式顯示。
任何人都可以幫助我創建一個自定義導航欄iOs5
。