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