在导航栏中为ABPeoplePickerNavigationController定制标题

时间:2011-02-10 08:35:30

标签: iphone objective-c uinavigationbar uilabel abaddressbook

我创建了一个AddressBook类型的应用程序,我在UITableView中显示人员列表,当选择某人时,按下ABUnknownPersonViewController。从这个ABUnknownPersonViewController,用户能够(通过使用内置功能)将人员添加到“新联系人”或“现有联系人”。

这是我的问题所在。我在整个应用程序中使用Custom UILabel作为NavigationBar标题。我需要能够为“添加新联系人”/“添加到现有联系人”推送的视图执行此操作。

我通过为ABNewPersonViewController创建一个类别为“添加新联系人”解决了这个问题,但是相同的方法对“添加到现有联系人”不起作用。我想这可能是因为它是一个被推送的ABPersonPickerNavigationController。

@implementation ABPeoplePickerNavigationController (customTitle)
-(void)viewDidLoad {
    [super viewDidLoad];    
    self.navigationBar.tintColor = [UIColor colorWithRed:102/255.0 green:102/255.0 blue:102/255.0 alpha:1];
}

NavigationBar的tintColor的颜色变化很好,但是我找不到正确的方法来访问标题。帮助包括一个工作示例,您可以在ABUnknownPersonViewController中推送的ABPeoplePickerNavigationController中更改标题,这将非常适合。

这是ABNewPersonViewController(有效)的类别如下:

@implementation ABNewPersonViewController (customTitle)
-(void)viewDidLoad {
    [super viewDidLoad];
    self.navigationController.navigationBar.tintColor = [UIColor colorWithRed:102/255.0 green:102/255.0 blue:102/255.0 alpha:1];
}
-(void)setTitle:(NSString *)theTitle {
    CGRect frame = CGRectMake(0, 0, 45, 45);
    UILabel *label = [[[UILabel alloc] initWithFrame:frame] autorelease];
    label.backgroundColor = [UIColor clearColor];
    label.font = [UIFont systemFontOfSize:20.0];
    label.shadowColor = [UIColor colorWithWhite:255.0 alpha:1];
    label.shadowOffset = CGSizeMake(1, 1);
    label.textAlignment = UITextAlignmentCenter;
    label.textColor = [UIColor colorWithRed:23/255.0 green:23/255.0 blue:23/255.0 alpha:1];
    self.navigationItem.titleView = label;
    label.text = theTitle;
    [label sizeToFit];
}

@end

1 个答案:

答案 0 :(得分:-1)

我为此目的使用自定义标签。您也可以使用此代码更改字体大小。

示例:

UILabel * label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 320 / 11)];

label.font = 16.0;

label.textColor = [UIColor blackColor];

label.shadowColor = [UIColor colorWithWhite:0.0 alpha:0.5];

label.backgroundColor = [UIColor clearColor];

label.textAlignment = UITextAlignmentCenter;

label.text = @"Your title";

self.navigationItem.titleView = label;

[label release];

希望这有帮助。