我将现有的自定义插件转换为Swift语言:
(位于Plugins / CustomPluginInSwift.swift下)
import Foundation class CustomPluginInSwift : CDVPlugin { func getSettings(command: CDVInvokedUrlCommand) { println("CustomPluginInSwift :: getSettings is called") var pluginResult = CDVPluginResult(status: CDVCommandStatus_OK) commandDelegate.sendPluginResult(pluginResult,callbackId:command.callbackId) } }
我有两个问题:
没有找到CDVPlugin
> Javascript没有看到插件:CustomPluginInSwift:
CDVPlugin class CustomPluginInSwift (pluginName: CustomPluginInSwift) does not exist
我离开config.xml是一样的,但它没有按预期的方式工作。
我的问题在哪里?
如上所述,您必须添加一个包含的bridging-header.h文件
原文链接:https://www.f2er.com/swift/320406.html#import <Cordova/CDV.h>
此外,您还需要在XCode项目属性 – >构建设置 – > Objective-C桥接头中添加桥接头的路径。例如:
your-app-name/plugins/com.plugin.example/bridging-header.h
另外,为了让Objective-C看到相同的插件类名,你需要在类声明中添加一个@objc映射。它可以与swift类名称本身相同,或者与其他东西不同。在这个例子中,“HWPCustomPluginInSwift”将是Objective-C(和Javascript)最终会看到的:
@objc(HWPCustomPluginInSwift) class CustomPluginInSwift : CDVPlugin {
<feature name="CustomPluginInSwift"> <param name="ios-package" value="HWPCustomPluginInSwift" /> </feature>