我正在定制我的导航栏,所以它们都有一个徽标。我想在此处添加徽标:
我知道导航栏有一个背景图像属性,但这会将其拉伸到整个导航栏。我只想在那里!:)
到目前为止,我已经尝试过:
UIImage *gradientImage44 = [[UIImage imageNamed:@"NavBar25High"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)];
UIImage *gradientImage32 = [[UIImage imageNamed:@"NavBar25High"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)];
// Set the background image for *all* UINavigationBars
[[UINavigationBar appearance] setBackgroundImage:gradientImage44 forBarMetrics:UIBarMetricsDefault];
[[UINavigationBar appearance] setBackgroundImage:gradientImage32 forBarMetrics:UIBarMetricsLandscapePhone];
但这就是渐变,因为正如我所提到的,它使用图像作为背景图像:(