0

我希望 NavigationBar 的行为相同,但想改变它的外观。我在网上找到了很多方法,但我不确定哪一种是 iOS 5.0 的最佳结果。导航栏将如下所示:

在此处输入图像描述

4

2 回答 2

3

由于您的目标是 iOS 5,我肯定会使用Appearance 代理自定义 UINavigationBar。然后,您可以轻松设置自己的图像,它们将应用于您应用程序中的所有导航栏,而无需子类化。

您还可以通过自定义 UIBarButtonItem来自定义导航栏中的按钮。有类似backButtonBackgroundImageForState:barMetrics:后退按钮和backgroundImageForState:barMetrics:其他按钮的方法。

于 2012-06-19T22:13:24.487 回答
1

我也一直在寻找这个东西,也没有找到一个简单的解决方案!感谢我的一个朋友和示例代码,我们使用自定义导航栏类​​制作了它,该类可以导入到任何视图控制器类中。

.h文件:

#import <UIKit/UIKit.h>

@interface NATitleBar : UIView {
    NSInteger tag;
}
@property ( nonatomic) IBOutlet UIImageView *imageView;
@property ( nonatomic) IBOutlet UILabel *label;
@property ( nonatomic) IBOutlet UIButton *back;
@property ( nonatomic) IBOutlet UIButton *home;

/**
 * Supports UIButton-style adding targets
 */

@end

.m文件:

#import "NATitleBar.h"

@implementation NATitleBar
@synthesize imageView;
@synthesize label;
@synthesize back;
@synthesize home;

- (id)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame];

if (self) {
    NSArray *views = [[NSBundle mainBundle] loadNibNamed:@"NATitleBar" owner:self options:nil];
    [self addSubview:[views objectAtIndex:0]];

    // customize the view a bit
    //self.imageView.layer.borderWidth = 1.0;
    //self.imageView.layer.borderColor = [UIColor colorWithWhite:0.4 alpha:0.4].CGColor;
    //self.imageView.clipsToBounds = YES;
    //self.imageView.layer.cornerRadius = 5.0;
}


return self;
}


#pragma mark - Overriden Setters / Getters

- (void)setTag:(NSInteger)aTag {
self.back.tag = aTag;
}

- (NSInteger)tag {
return self.back.tag;
}

@end

然后对于 Nib 文件,我们有以下内容:

在此处输入图像描述

您可以在 Nib 文件中添加或删除图像,以根据需要制作 GUI。

现在您必须将该类导入您希望使用自定义导航控制器拥有的任何视图控制器,并定义两种方法(或者一种,如果您不想要“主页”按钮。在.h

- (void) back;

.m

- (void)back {
    [self.navigationController popViewControllerAnimated:YES];
}
于 2012-06-20T05:09:42.707 回答