-2

我在我的项目中使用 Cordova 2.7,我正在尝试使用插件“applicationPreferences” https://github.com/sandeep45/phonegap-plugins/blob/be5af18a5106d90ac534083df714314742b8eb2b/iPhone/ApplicationPreferences/

成功设置了 settings.bundle 和插件后,我遇到了这个错误:

ERROR: Method 'setSetting:' not defined in Plugin

仅尝试设置后,我会假设任何阻止其运行的编码问题也会导致“getSetting”方法也失败。

该插件看起来像这样:

H 文件

https://raw.github.com/sandeep45/phonegap-plugins/be5af18a5106d90ac534083df714314742b8eb2b/iPhone/ApplicationPreferences/applicationPreferences.h

M文件

https://raw.github.com/sandeep45/phonegap-plugins/be5af18a5106d90ac534083df714314742b8eb2b/iPhone/ApplicationPreferences/applicationPreferences.m

我对 obj-c 不是很好,任何人都可以看到错误是在哪里引起的,以及我将如何纠正它?

4

1 回答 1

0

我错误配置了 config.xml

真的很简单..

<plugin name="applicationPreferences" value="CVDPlugin" />

本来应该 ...

<plugin name="applicationPreferences" value="applicationPreferences" />

自我建议,阅读手册!

至少对于那些可能犯同样愚蠢错误的人来说,这现在是一块巨石:D

于 2013-08-04T14:55:13.313 回答