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