运行简单的HelloWorld phonegap项目时, 在配备4.3.2操作系统的iPhone 4上它运行良好
但是当我尝试在带有3.1.3操作系统的iPhone 3上运行它时,我遇到了CoreMedia lib的问题,我需要在构建设置中“弱”。
一旦我解决了这个问题,我遇到了一个全新的问题,我无法找到解决方案:
dyld:未找到符号:_UIAccessbilityAnnouncmentNotifcation ....在/SystemLibrary/Frameworks/UIKit.framework/UIKIT中被激活
项目和目标部署目标均为3.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.
希望这有帮助!