我正在使用 iOS 5 中的新外观代理来为我的 UINavigationBar 设置背景图像。
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"ZSNavigationBG.png"] forBarMetrics:UIBarMetricsDefault];
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"ZSNavigationLandscapeBG.png"] forBarMetrics:UIBarMetricsLandscapePhone];
这工作正常,但我需要设置导航栏的提示属性。当我这样做时,导航栏的高度会增加,并且我的背景图像不再垂直填充该导航栏,因此看起来很糟糕。
使用自定义背景图像时,如何通过提示说明高度变化?