我已经在Stack Overflow,Google和其他同行中搜索了Xcode 6中当前的解决方法,但是这样做却失败了.
请注意,只有在尝试使用XCODE 6在设备上运行我的应用程序时才会发生此错误. (使用模拟器时这不是问题,我可以使用Xcode 5在设备上构建我的应用程序)
它似乎是一个框架或库问题,但由于它能够以几乎所有其他可能的方式工作,我不确定解决方案所在的位置.我正在使用Xcode 6.0.
这是错误:


我检查了我的架构设置,框架和项目文件.需要包含的所有东西似乎都在那里.

这看起来像Cocos2d和/或Xcode6可能是一个愚蠢的错误.我使用SpriteBuilder来创建应用程序.如果你有修复或有这个错误,任何见解将不胜感激,谢谢!
我已经尝试了几天来覆盖自定义标签样式的Holo主题,但我的更改没有任何效果.
这是我的styles.xml
<!-- the theme applied to the application or activity -->
<style name="CustomActionBarTheme" parent="@android:style/Theme.Holo">
<item name="android:tabWidgetStyle">@style/MyActionBarTabs</item>
</style>
<!-- ActionBar tabs styles -->
<style name="MyActionBarTabs" parent="@android:style/Widget.Holo.ActionBar.TabView">
<!-- tab indicator -->
<item name="android:background">@drawable/tabselector</item>
</style>>
Run Code Online (Sandbox Code Playgroud)
这是我的tabselector.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Non focused states -->
<item android:drawable="@drawable/tab_unselected_holo" android:state_focused="false" android:state_pressed="false" android:state_selected="false"/>
<item android:drawable="@drawable/tab_selected_holo" android:state_focused="false" android:state_pressed="false" android:state_selected="true"/>
<!-- Focused states -->
<item android:drawable="@drawable/tab_unselected_focused_holo" android:state_focused="true" android:state_pressed="false" android:state_selected="false"/>
<item android:drawable="@drawable/tab_selected_focused_holo" android:state_focused="true" android:state_pressed="false" android:state_selected="true"/>
<!-- Pressed -->
<!-- Non focused states -->
<item android:drawable="@drawable/tab_unselected_pressed_holo" android:state_focused="false" android:state_pressed="true" android:state_selected="false"/>
<item android:drawable="@drawable/tab_selected_pressed_holo" …Run Code Online (Sandbox Code Playgroud) android android-tabhost android-theme android-actionbar android-styles