我正在尝试使用iOS 6中的以下代码更改导航栏标题字体类型。它无法正常工作
NSDictionary *navbarTitleTextAttributes = [NSDictionary dictionaryWithObjectsAndKeys:
[UIColor colorWithRed:0.0f/255.0 green:0.0f/255.0 blue:0.0f/255.0 alpha:1.0],UITextAttributeTextColor,[UIFont fontWithName:@"Helvetica-Light" size:10.0], NSFontAttributeName,nil];
[[UINavigationBar appearance] setTitleTextAttributes:navbarTitleTextAttributes];
但是粗体字型即将推出。我需要从Bold类型更改为Regular。