Cordova官網關於如何創建PhoneGao項目的步驟已經很詳細了,這裡就不贅述了。
實際項目開發中可能需要添加Cordova到已經存在的工程中,近期就遇到了這個問題。雖然網上也有一些教程,
但已不適用於最新版本的Cordova了,故特將步驟紀錄如下。
1.加入我們已經存在名為Demo項目,目錄結構如下:
2.拷貝Cordova相關文件到Demo目錄下,拷貝後目錄結構如下
3.將CordovaLib.xcodeproj添加到Demo工程中,右鍵選擇Add Files To Demo
4.添加www目錄到工程中,記得是勾選Create folder references
5.按步驟三添加config.xml到工程中,目錄結構如下
6.選擇工程的Build Settings->Other Links, 設置-Objc -all_load
7.選擇Build Phases->New Run Script Phase,將新增New Run Script Phase命名為copy www directory
8.Build Phases->Target Dependencies添加CordovaLib
9.Link Binary With Librarys添加libCordova.a, MobileCoreServices,AssetsLibrary
9.接下來你就可以正常使用Cordova了,注意other linkers一定要設置,
'-[__NSCFConstantString JSONObject]: unrecognized selector sent to instance否則會提示類似的錯誤