iOS 7中的UITabBar - 触摸问题

时间:2013-09-13 16:33:39

标签: uitabbarcontroller uitabbar ios7

我在iOS 7中使用我的应用程序时出现了奇怪的情况(使用GM版本)。

我有四个标签,我有一个自定义标签栏,背景,图标等。我在下面有我的代码,可以正确设置标签栏:

[[UITabBar appearance] setBackgroundImage:[UIImage imageNamed:@"tab_bar.png"]];
[[UITabBar appearance] setSelectionIndicatorImage:[UIImage imageNamed:@"tab_selected.png"]];
[[UITabBarItem appearance] setTitleTextAttributes:@{UITextAttributeTextColor: [UIColor whiteColor]} forState:UIControlStateHighlighted];
[[UITabBarItem appearance] setTitleTextAttributes:@{UITextAttributeTextColor: [UIColor whiteColor]} forState:UIControlStateNormal];

我有四个标签,当用户选择最后三个标签中的任何一个时,一切正常。但是当用户尝试返回第一个选项卡时,选项卡会切换,但选择不会切换。它仍然显示选择了上一个选项卡。如果他们再次点击,则会切换。我应该注意iOS 7是否有任何其他变化?似乎iOS 7正在失去对这里和那里的触摸,我无法找到任何其他东西。

1 个答案:

答案 0 :(得分:1)

我也有这个,我很确定这是ios 7中的一个错误