0
在iOS 5 SDK中,如何自定義導航控制器中導航欄的外觀?自定義iOS 5 SDK中導航欄的外觀
我曾在基於一個教程,我發現我的AppDelegate.m文件添加這一點,但它似乎沒有工作:
@implementation UINavigationBar (Background)
-(void)drawRect:(CGRect)rect {
UIImage *image = [UIImage imageNamed:@"top_shadow.png"];
[image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}
@end
謝謝。
在IOS5