我有一个用于iphone/objective-c的简单的基于导航的应用程序

在插入 View 的各种UIViewControllers中,我可以使用类似

self.title = @"blah blah blah"

有没有一种方法可以控制标题栏中文本标题的字体字体大小

谢谢!

最佳答案

调整navcontroller标题文本大小的正确方法是设置navigationItem的titleView属性

像这样(在viewDidLoad中)

   UILabel* tlabel=[[UILabel alloc] initWithFrame:CGRectMake(0,0, 300, 40)];
        tlabel.text=self.navigationItem.title;
    tlabel.textColor=[UIColor whiteColor];
    tlabel.backgroundColor =[UIColor clearColor];
    tlabel.adjustsFontSizeToFitWidth=YES;
    self.navigationItem.titleView=tlabel;

关于iphone - 在UITableViewController中设置标题栏文本的字体和字体大小,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1545975/

10-12 14:03