我正在重写从Objective-C到
Swift的应用程序中的所有插件.
这些插件由Cordova调用.所有插件在Objective-C中都能正常工作.
这些插件由Cordova调用.所有插件在Objective-C中都能正常工作.
但是当我尝试使用swift版本插件运行应用程序时,我得到以下错误.
ERROR: Method ‘getMAC2:’ not defined in Plugin ‘MACPlugin2’
- import Foundation
- @objc(MACPlugin2)
- class MACPlugin2 : CDVPlugin {
- func getMAC2(command : CDVInvokedUrlCommand){
- print("########## ENTER MACPLUGIN 2 ###########")
- }
- }
有人知道发生了什么?
最好,
弗拉维奥
我的例子如下,没有_它没有工作!
注意:此解决方案是Swift 3的修复程序
注意:此解决方案是Swift 3的修复程序
- @objc(LibCDVP) class LibCDVP : CDVPlugin {
- func echo(_ command: CDVInvokedUrlCommand) {
- print("method call OK!")
- let msg = command.arguments[0] as? String ?? ""
- let pluginResult = CDVPluginResult(
- status: CDVCommandStatus_OK,messageAs: msg + ",ECHO"
- )
- self.commandDelegate!.send(
- pluginResult,callbackId: command.callbackId
- )
- }
- }