当我收到将标签栏的背景图像更改为自定义图像的请求时,我已经完成了一个标签栏iOS项目。该项目是为iOS 4.x开发的,因此iOS5[tabBar setTabBarBackgroundImage:[UIImage imageNamed:@"custom.jpg"]]不起作用。您能为我提供一些简单的解决方案吗(如果有可能,我不想更改整个项目)?

编辑:
只有三行代码可以解决所有问题:

UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"customImage.png"]];
[self.tabBarController.tabBar insertSubview:imageView atIndex:0];
[imageView release];

最佳答案

一种可能的解决方案是将UIView与背景图像恰好放在UITabBar的后面。然后将标签栏的不透明度降低到0.5,这样您就可以看到背景图像通过了。

UIView *bckgrndView = [[UIView alloc] initWithFrame:CGRectMake(tabbar.frame.coords.x, tabbar.frame.coords.y, tabbar.frame.size.width, tabbar.frame.size.height)];
[bckgrndView setBackgroundImage:[UIImage imageNamed:@"custom.jpg"]];
[tabbar.superView insertSubView:bckgrndView belowSubview:tabbar];
tabbar.alpha = 0.5;
[bckgrndView release];

对不起,如果我的代码包含一些错误。我尝试着做到这一点……但是您会发现其中的漂移。

关于ios - 自定义标签栏背景图片-在iOS 4.x中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8709802/

10-12 22:36