6

我已将以下代码应用于我的应用程序以更改导航栏图像。

- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self.navigationController.navigationBar setTintColor:[UIColor blackColor]];
[self setNavigationBarTitle];
}
-(void)setNavigationBarTitle {
UIView *aViewForTitle=[[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 45)] autorelease];
UIImageView *aImg=[[UIImageView alloc] initWithFrame:CGRectMake(-8, 0, 320, 45)];
aImg.image=[UIImage imageNamed:@"MyTabBG.png"];
[aViewForTitle addSubview:aImg]; [aImg release]; 
UILabel *lbl=[[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 305, 45)] autorelease];
lbl.backgroundColor=[UIColor clearColor]; lbl.font=[UIFont fontWithName:@"Trebuchet MS" size:22];
lbl.shadowColor=[UIColor blackColor]; [lbl setShadowOffset:CGSizeMake(1,1)];
lbl.textAlignment=UITextAlignmentCenter; lbl.textColor=[UIColor whiteColor]; lbl.text=@"Mobile Tennis Coach Overview";
[aViewForTitle addSubview:lbl];
[self.navigationItem.titleView addSubview:aViewForTitle];
}

见下图。你可以看到我面临的问题。

替代文字


替代文字

我的应用程序的每个视图控制器都有上述方法来设置导航栏背景。

但是,当我将新的视图控制器推送到我的应用程序时。将出现返回按钮。

我需要后退按钮出现。但图像应该在后退按钮后面。

现在我在这里有点困惑。

你能帮我解决这个问题吗?

提前感谢您与我分享您的知识。

非常感谢。

4

2 回答 2

6

经过一个烦人的夜晚后,如果您使用 drawLayer,我发现对此进行了微调。使用 drawRect,当您播放视频或 youtube 视频时,导航栏将替换为图像。我读了一些帖子,这导致他们的应用程序被拒绝。

@implementation UINavigationBar (UINavigationBarCategory)

- (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx 
{
   if([self isMemberOfClass:[UINavigationBar class]])
   {
     UIImage *image = [UIImage imageNamed:@"navBarBackground.png"];
     CGContextClip(ctx);
     CGContextTranslateCTM(ctx, 0, image.size.height);
     CGContextScaleCTM(ctx, 1.0, -1.0);
     CGContextDrawImage(ctx,
     CGRectMake(0, 0, self.frame.size.width, self.frame.size.height), image.CGImage); 
   }
   else 
   {        
     [super drawLayer:layer inContext:ctx];     
   }
}  
@end

如果这篇文章是准确的,那么这种方法应该没问题:http: //developer.apple.com/iphone/library/qa/qa2009/qa1637.html

于 2010-01-10T22:00:19.500 回答
5

简短的回答是 Apple 不支持修改 UINavigationBar 的结构。他们真的不希望你做你想做的事。这就是导致您所看到的问题的原因。

请提交请求此功能的雷达,以便在某个时候正式添加它可以引起足够的关注。

话虽如此,要解决此问题,您可以使用 -drawRect: 方法向 UINavigationBar 添加类别并在该方法中绘制背景图像。像这样的东西会起作用:

- (void)drawRect:(CGRect)rect
{
  static UIImage *image;
  if (!image) {
    image = [UIImage imageNamed: @"HeaderBackground.png"];
    if (!image) image = [UIImage imageNamed:@"DefaultHeader.png"];
  }
  if (!image) return;
  CGContextRef context = UIGraphicsGetCurrentContext();
  CGContextDrawImage(context, CGRectMake(0, 0, self.frame.size.width, self.frame.size.height), image.CGImage);
}
于 2009-09-05T03:39:22.630 回答