有没有办法为ipad横向/纵向模式使用不同的图像?我的导航栏中间有一个徽标,虽然在iphone上使用不同的图像效果很好,但我不能在iPad上使用不同的图像,因此当你转动设备时徽标不会居中。
或者,我可以使用普通的背景图像,也许可以用图像或中心按钮替换导航栏标题,但我也无法做到这一点。 (我没有UINavigationController子类)。
这是我的代码,目前在app delegate中执行了这个技巧:
if ([UINavigationBar respondsToSelector:@selector(appearance)]) {
// Create resizable images for iphone
UIImage *navbarImage44 = [[UIImage imageNamed:@"nav_bar"]
resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)];
UIImage *navbarImage32 = [[UIImage imageNamed:@"nav_bar_landscape"]
resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)];
// Overide for iPad
// In theory navbar_bg_landscape~iPad should work
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
//use iPad specific image extending last pixel for landscape mode
[[UINavigationBar appearance] setBackgroundImage:[[UIImage imageNamed:@"nav_bar_ipad" ]
resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)]
forBarMetrics:UIBarMetricsDefault];
}else {
// Set the background image for *all* UINavigationBars
[[UINavigationBar appearance] setBackgroundImage:navbarImage44
forBarMetrics:UIBarMetricsDefault];
// Never called on iPad, used for landscape on iPhone
[[UINavigationBar appearance] setBackgroundImage:navbarImage32
forBarMetrics:UIBarMetricsLandscapePhone];
}
}
答案 0 :(得分:1)
我没有得到任何回应,所以我发现了一个工作,就是调整景观图像的大小。我现在还好。我正在调整我的肖像背景图片 - 这是我的iPad代码
// Create resizable images UIImage *ipadTabBarBG = [[UIImage imageNamed:@"nav_bar_ipad.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, -260, 0, 0)]; // Set the background image for *all* UINavigationBars [[UINavigationBar appearance] setBackgroundImage:ipadTabBarBG forBarMetrics:UIBarMetricsDefault];