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/>
<feature name="ChildBrowser"> ><param name="ios-package" value="ChildBrowserCommand" /> </feature>
答案 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;