我目前使用此代码来设置我的导航项的 titleView:
- (void)viewDidLoad
{ ...
UIImage *navbarTitle = [UIImage imageNamed:@"navbartitleview1"];
UIImageView *imageView = [[UIImageView alloc]initWithImage:navbarTitle];
self.navigationItem.titleView =imageView;
}
有没有办法可以使用 UIAppearance 放置此代码?
[UINavigationItem appearance]
无效。