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