//公共函數
//.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")];