ios Navigation Title(更改字体大小)

//公共函数

//.h
+ (UIView *) changeNavTitleByFontSize:(NSString *)strTitle;

//.m
+ (UIView *) changeNavTitleByFontSize:(NSString *)strTitle
{
    //自定义标题
    UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0 , 100, 44)];
    titleLabel.backgroundColor = [UIColor clearColor];
    titleLabel.font = [UIFont fontWithName: @"Helvetica" size: 14.0];
    titleLabel.textColor = [UIColor whiteColor];//设置文本颜色
    titleLabel.textAlignment = UITextAlignmentCenter;
    titleLabel.text = strTitle;
    return [titleLabel autorelease];
}


//调用
self.navigationItem.titleView = [ABUtil changeViewTitleFontSize:Localized(@"ChangePassword")];

  

posted @ 2013-10-28 14:24  暖流  阅读(3022)  评论(0编辑  收藏  举报