gpt4 book ai didi

iOS phonegap 插件 : ChildBrowserCommand (pluginName: ChildBrowserCommand) does not exist

转载 作者:行者123 更新时间:2023-11-29 13:45:21 26 4
gpt4 key购买 nike

我正在尝试使用 phonegap 1.0.0 和 X-Code 4 的 ChildBrowserPlugin(来自 https://github.com/purplecabbage/phonegap-plugins)。

但它给出了错误。连我都加了
键:ChildBrowserCommand
字符串:ChildBrowserCommand
在 PhoneGap.plist 中

2011-10-03 16:17:06.530 samplePlugins[3913:40b] PGPlugin class ChildBrowserCommand (pluginName: ChildBrowserCommand) does not exist.
2011-10-03 16:17:06.531 samplePlugins[3913:40b] ERROR: Plugin 'ChildBrowserCommand' not found, or is not a PGPlugin. Check your plugin mapping in PhoneGap.plist.

谁能帮我看看我的设置或代码有什么问题。

我将 ChildBrowser.js 放在 www 文件夹中
index.html

<script type="text/javascript" charset="utf-8" src="ChildBrowser.js"></script>

function onDeviceReady()
{
var cb = ChildBrowser.install();
if(cb != null)
{
cb.onLocationChange = function(loc){ root.locChanged(loc); };
cb.onClose = function(){root.onCloseBrowser()};
cb.onOpenExternal = function(){root.onOpenExternal();};
window.plugins.childBrowser.showWebPage("http://google.com");
}
}

function onLocationChange(loc) {
navigator.notification.alert('Change to URL : '+loc);
}
function onClose() {
navigator.notification.alert('onClose :');
}
function onOpenExternal() {
navigator.notification.alert('onOpenExternal :');
}

最佳答案

问题已解决
objective-c 文件未正确包含。<​​br/>我删除了文件的引用并重新包含它..然后工作正常......
相关帖子:https://github.com/purplecabbage/phonegap-plugins/issues/35

关于iOS phonegap 插件 : ChildBrowserCommand (pluginName: ChildBrowserCommand) does not exist,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7634077/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com