使用xcode 4的phonegap将无法在ios 3.1.3(UIKIT)上运行

时间:2011-08-31 08:40:21

标签: ios uikit

运行简单的HelloWorld phonegap项目时, 在配备4.3.2操作系统的iPhone 4上它运行良好

但是当我尝试在带有3.1.3操作系统的iPhone 3上运行它时,我遇到了CoreMedia lib的问题,我需要在构建设置中“弱”。

一旦我解决了这个问题,我遇到了一个全新的问题,我无法找到解决方案:

dyld:未找到符号:_UIAccessbilityAnnouncmentNotifcation ....在/SystemLibrary/Frameworks/UIKit.framework/UIKIT中被激活

项目和目标部署目标均为3.1

有什么想法吗? 提前致谢 盖

1 个答案:

答案 0 :(得分:0)

抱歉,如果你还有这个问题,或者其他人遇到这个问题,我只是回答。以下解决方案可能有所帮助:

This is covered in the README FAQ. Basically you need to weak link three frameworks for iOS 3.x:
1. CoreMedia
2. AVFoundation
3. UIKit

Try that and see if that solves your problem. 

来源: http://community.phonegap.com/nitobi/topics/ios_3_1_3_crashing_when_using_phonegap_with_xcode_4_uikit_problem?from_gsfn=true

希望这有帮助!