UITabBar中的选择字段自定义

时间:2015-08-07 05:04:42

标签: ios xcode uitabbar uitabbaritem

我需要为我的项目自定义UITabBar,如此图所示。有可能这样做吗?如果是这样,怎么办呢?选择字段应具有此“橙色”阴影Tab Bar. Selected Field Must have Color

1 个答案:

答案 0 :(得分:2)

您可以通过以下方式实现此目的:

yourTabBar.selectionIndicatorImage = [UIImage imageNamed:@"yourImage.png"];

将橙色渐变创建为图像,并在上面的代码中使用它。

希望这有帮助。