我使用plugman创建了一个cordova插件,在ios(cocoa pods)中创建了一个框架并将其添加到我的插件中。 当我尝试从该框架调用一个函数(包含要由cordova调用的函数的swift文件)时,我得到一个错误,我没有在swift中声明该函数。 我已经将框架编译为“通用iOS设备”,正如一些帖子中所建议的那样但我在使用框架功能时仍然存在问题。
我正在使用Cordova cli 7.0.1和Cordova-ios“:^ 4.4.0。 在我正在使用的插件config.xml文件中
添加我的框架但调用我的函数(在尝试读取框架函数的插件中)返回: 错误:'printer'不可用:找不到此类的Swift声明: let printtt = testtest.printer(); ^ ~~~~~~ testtest.printer:2:12:注意:'printer'在这里明确标记为不可用 open class printer:NSObject { ^ /platforms/ios/MyApp/Plugins/com-moduscreate-plugins-echo/ModusEchoSwift.swift:11:5: 错误:'printer'类型的值没有成员'printlocal' printtt.printlocal(); ^ ~~~~~~~~~~~~~~~~
** BUILD FAILED **
有人遇到过这样的问题吗? PS。我的框架包含一个带有公共方法的公共类打印机 我在xcode 8.xx
下测试过的printlocal**my plugin.xml file:**
<?xml version='1.0' encoding='utf-8'?>
<plugin id="com-moduscreate-plugins-echo" version="0.0.1"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>ModusEcho</name>
<js-module name="ModusEcho" src="www/ModusEcho.js">
<clobbers target="modusEcho" />
</js-module>
<platform name="ios">
<framework src="src/ios/testtest.framework" custom="true" embed="true" />
<config-file target="config.xml" parent="/*">
<feature name="ModusEcho">
<param name="ios-package" value="ModusEchoSwift" />
</feature>
</config-file>
<source-file src="src/ios/ModusEchoSwift.swift" />
</platform>
</plugin>
我的快速文件:
import testtest
@objc(ModusEchoSwift) class ModusEchoSwift : CDVPlugin{
@objc(echocrypt:)
func echocrypt(command: CDVInvokedUrlCommand) {
var pluginResult = CDVPluginResult(
status: CDVCommandStatus_ERROR
)
let printtt = testtest.printer();
printtt.printlocal();
}
}
**my dynamic framework class:**
import Foundation
public class printer:NSObject {
public func printlocal() {
print("from printer!!!");
}
}
www / modusecoh.js文件:
var exec = require('cordova/exec');
exports.echocrypt = function(arg0, success, error) {
exec(success, error, "ModusEcho", "echocrypt"`enter code here`, [arg0]);
};