iPhone 中的UI导航栏背景

问题描述 投票:0回答:2

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

- (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];
}

请参阅以下图片。你可以看到我面临的问题。

alt text


alt text

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

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

我需要显示后退按钮。但图像应该在后退按钮后面。

iphone xcode uinavigationbar uinavigationitem
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


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);
}
© www.soinside.com 2019 - 2024. All rights reserved.