我正在尝试设置 UINavigationBar 背景图像:
我在 AppDelegate 中添加了:(请注意这是一张图片)
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"general-top_bar_with_status.png"] forBarMetrics:UIBarMetricsDefault];
由于我不需要半透明,在 ViewDidLoad 的 ViewController 中我添加了:
self.navigationController.navigationBar.translucent = NO;
这是图像:
不幸的是,这就是我得到的:
如您所见,图像是向上向下的。
怎么了?
在情节提要中,我为 TopBar - 不透明导航栏设置了一个位置