0

我在我当前的应用程序中使用导航控制器,但我在 iOS4 和 iOS5 的导航控制器上遇到了问题,所以我尝试为 iOS 4 和 5 编写代码

if([[UINavigationBar class] respondsToSelector:@selector(appearance)]) //iOS >=5.0
{
    [self.navigationController.navigationBar setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];
}
else
{
    self.navigationController.navigationBar.layer.contents = (id)[UIImage imageNamed:@"header.png"].CGImage;
}

但问题是当我在 iOS 4 版本上运行我的应用程序时,我的导航控制器看起来像这样。在此处输入图像描述

请建议我。

4

2 回答 2

2

感谢经过长时间的搜索,我尝试了这段对我有帮助的代码。

导入“ImageViewController.h”

@implementation UINavigationBar (CustomImage)

- (void)drawRect:(CGRect)rect {
    UIImage *image = [UIImage imageNamed:@"background.png"];
    [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}

@end
implement this code in your .m file


@implementation ImageViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.navigationController.navigationBar.tintColor = [UIColor blackColor];
    UIImageView *backGroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"background.png"]];
    [self.navigationController.navigationBar insertSubview:backGroundView atIndex:0];
    [backGroundView release];
}

@end
于 2012-05-14T10:26:38.547 回答
0
UINavigationController *navControl;

在其他部分,尝试这样。

UINavigationBar *navBar = self.navControl.navigationBar;
   UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
            imgView.image = [UIImage imageNamed:@"header.png"];
            [navBar addSubview:imgView];
            [imgView release];
于 2012-05-14T11:14:20.600 回答