更改导航栏的标题

来源:互联网 发布:hive sql格式化工具 编辑:程序博客网 时间:2024/05/21 17:39

-(void)setTitle:(NSString *)title{


   UILabel *titlelabel = [[UILabelalloc] initWithFrame:CGRectZero];

    titlelabel.textColor= [UIColorblackColor];

    titlelabel.font = [UIFontsystemFontOfSize:18.0f];

    titlelabel.backgroundColor=[UIColorclearColor];

    titlelabel.text=title;

    [titlelabelsizeToFit];

    

    self.navigationItem.titleView=titlelabel;

}


0 0