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")];

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM