我是phonegap2.0的新手。现在,我想使用phonegap创建iPhone应用程序。我在雪豹Mac上使用xcode4.2。我在Mac上安装了phonegap。但是现在我正在使用下面的链接在IOS上嵌入Cordova Webview:

 "http://docs.phonegap.com/en/2.0.0/guide_cordova-webview_index.md.html#Embedding%20WebView"
但是当我在xcode4.2 Iphone 5.0 Simulator中运行编码时。我收到了#import"PGPlugin.h" "file not found"错误。
"#ifdef PHONEGAP_FRAMEWORK
    #import <PhoneGap/PGPlugin.h>
#else
    #import "PGPlugin.h"
#endif".
我已附上错误页面Screen Shot以供引用。

最佳答案

更改此部分:

#ifdef PHONEGAP_FRAMEWORK
    #import <PhoneGap/PGPlugin.h>
#else
    #import "PGPlugin.h"
#endif

具有以下内容:
#import <Cordova/CDVPlugin.h>

另外,由于您使用的是Cordova 2.0.0版,因此您可能需要将以PG(例如:PGPlugin)开头的所有内容更改为CDV(例如:PGPlugin-> CDVPlugin)。

关键是以前以PG开头的插件版本。

让我知道这个是否奏效。

10-08 09:01