Cordova IOS项目Debug运行正常,当Archived的时候,出现下面错误:
xx/Classes/AppDelegate.h:30:9: 'Cordova/CDVViewController.h' file not found
解决方法:
Add this line to your Build Settings -> Header Search Paths:
"$(OBJROOT)/UninstalledProducts/$(PLATFORM_NAME)/include" 原文见地址:
http://forum.ionicframework.com/t/cordova-cdvviewcontroller-h-file-not-found-in-xcode-7-1-beta/32232/5
本文解决了在使用Cordova开发iOS应用时遇到的Archived错误,即在Xcode中找不到CDVViewController.h文件的问题。通过将$(OBJROOT)/UninstalledProducts/$(PLATFORM_NAME)/include路径添加到Build Settings的Header Search Paths中,成功解决了该问题。
2793

被折叠的 条评论
为什么被折叠?



