我正在尝试使用以下代码在 NavigationBar 中设置 titleView。它在模拟器上正确显示,但在设备上却没有。
这是我的代码:
UIImage *imageTitle = [UIImage imageNamed: @"tittle_SW.png"];
UIImageView *imageViewForTitle = [[UIImageView alloc] initWithImage: imageTitle];
self.navigationItem.titleView = imageViewForTitle;
self.navigationItem.titleView.autoresizesSubviews = NO;
我尝试在 initWithNibName 和 viewDidLoad 中使用此代码,并且它们都可以在模拟器上运行,但在设备上没有显示任何内容。