ChildBrowser插件不适用于Phonegap 2.9

时间:2013-09-25 04:13:38

标签: cordova phonegap-plugins childbrowser

I've upgraded the plugin to latest commits from GitHub
Just still not able to include it in the project <br/>
Just two questions <br/>
  1. 如何正确地将它添加到config.xml(如果以下是正确的)
  2. <feature name="ChildBrowser">
    ><param name="ios-package" value="ChildBrowserCommand" />
    </feature>
    
    1. 我应该记住的任何其他事情。

2 个答案:

答案 0 :(得分:0)

我根据这个帖子通过以下步骤获得了ChildBrowser插件以使用Phonegap 2.9。 ios phonegap Child Browser plugin setup

PS。您在config.xml中的“功能”设置是正确的。

答案 1 :(得分:0)

<feature name="ChildBrowserCommand">
    <param name="ios-package" value="ChildBrowserCommand" />
</feature>

请记住获取最新的插件代码,因为phonegap已经改变了参数传递给本机.m文件的方式 例如:

- (void)showWebPage:(CDVInvokedUrlCommand*)command 

和.h文件

@property (nonatomic, strong) ChildBrowserViewController* childBrowser;

-(void)showWebPage:(CDVInvokedUrlCommand*)command;