我试图从我创建的iOS框架中读取一个函数,我已将其添加到自定义cordova插件中。 我已经将框架编译为" Generic iOS Device",正如在一些帖子中所建议的那样但我在使用框架函数时仍有问题。
我正在使用cordova cli 7.0.1和cordova-ios":^ 4.4.0。 在插件config.xml文件中我使用
添加我的框架但调用我的函数(在尝试读取框架函数的插件中)返回: 错误:' printer'不可用:找不到此类的Swift声明: let printtt = testtest.printer(); ^ ~~~~~~ testtest.printer:2:12:注意:'打印机'已明确标记为不可用 open class printer:NSObject { ^ /platforms/ios/MyApp/Plugins/com-moduscreate-plugins-echo/ModusEchoSwift.swift:11:5: 错误:类型'打印机'的值没有会员' 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]);
};
答案 0 :(得分:2)
发现问题: 因为我使用了&#34; cordova-plugin-add-swift-support&#34;插件,它已将项目的ios min部署目标设置为7.0,因此框架(动态库)仅从8.0引入 将插件IOS_MIN_DEPLOYMENT_TARGET全局变量值更改为8.0时(重新编译后),它已经开始工作了! 所以,上面的代码是使用来自cordova自定义插件的swift3编写的xcode框架的方式。