ios - 用 Swift 编写 Cordova/Ionic 插件
<p><p>我按照该站点的说明进行操作,<a href="http://moduscreate.com/writing-a-cordova-plugin-in-swift-for-ios/" rel="noreferrer noopener nofollow">http://moduscreate.com/writing-a-cordova-plugin-in-swift-for-ios/</a> ,用于为 iOS 平台创建我自己的 cordova 插件。
首先,我安装了plugman 并创建了一个新插件。这是我的 plugin.xml:</p>
<pre><code><?xml version='1.0' encoding='utf-8'?>
<plugin id="com-moduscreate-plugins-echoswift" version="0.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>ModusEchoSwift</name>
<js-module name="ModusEchoSwift" src="www/ModusEchoSwift.js">
<clobbers target="modusechoswift" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="ModusEchoSwift">
<param name="ios-package" value="ModusEchoSwift" />
</feature>
</config-file>
<source-file src="src/ios/ModusEchoSwift.swift" />
</platform>
</plugin>
</code></pre>
<p>这是我的插件 js 文件,即 ModusEchoSwift.js:</p>
<pre><code>var exec = require('cordova/exec');
exports.echo = function(arg0, success, error) {
exec(success, error, "ModusEchoSwift", "echo", );
};
exports.echojs = function(arg0, success, error) {
if (arg0 && typeof(arg0) === 'string' && arg0.length > 0) {
success(arg0);
} else {
error('Empty message!');
}
};
</code></pre>
<p>这是我的原生 Swift 类,即 ModusEchoSwift.swift:</p>
<pre><code>@objc(ModusEchoSwift) class ModusEchoSwift : CDVPlugin {
func echo(command: CDVInvokedUrlCommand) {
var pluginResult = CDVPluginResult(
status: CDVCommandStatus_ERROR
)
let msg = command.arguments as? String ?? ""
if msg.characters.count > 0 {
/* UIAlertController is iOS 8 or newer only. */
let toastController: UIAlertController =
UIAlertController(
title: "",
message: msg,
preferredStyle: .Alert
)
self.viewController?.presentViewController(
toastController,
animated: true,
completion: nil
)
let duration = Double(NSEC_PER_SEC) * 3.0
dispatch_after(
dispatch_time(
DISPATCH_TIME_NOW,
Int64(duration)
),
dispatch_get_main_queue(),
{
toastController.dismissViewControllerAnimated(
true,
completion: nil
)
}
)
pluginResult = CDVPluginResult(
status: CDVCommandStatus_OK,
messageAsString: msg
)
}
self.commandDelegate!.sendPluginResult(
pluginResult,
callbackId: command.callbackId
)
}
}
</code></pre>
<p>这些是我插件中的文件。现在我试图在我的 ionic 项目中使用这个插件显示一个简单的警报。我现在有一个简单的 index.html,我想在其中显示警报,这里是:</p>
<pre><code><ion-pane>
<ion-header-bar class="bar-stable">
<h1 class="title">Ionic Blank Starter</h1>
</ion-header-bar>
<ion-content>
<div ng-controller="myController">
Hello {{user}}
</div>
</ion-content>
</ion-pane>
</code></pre>
<p>这是我的 Controller :</p>
<pre><code>.controller('myController', function($scope){
console.log("Ok");
$scope.user = "kAy";
ModusEchoSwift.echo('Plugin Ready!', function(msg) {
console.log("Success");
},
function(err) {
console.log("Error");
}
);
</code></pre>
<p>})</p>
<p>在此 Controller 中,我不断收到未定义 ModusEchoSwift 的错误,我不明白!谁能告诉我如何在我现有的 ionic 项目中使用我的插件的功能??</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>这<strong>确实</strong>可以在 ionic v2.2.1 和 cordova v6.5.0 上正常工作,前提是 Simon 的 <a href="http://moduscreate.com/writing-a-cordova-plugin-in-swift-for-ios/" rel="noreferrer noopener nofollow">blog post</a> 中列出的步骤紧随其后,并且有一个小改动:在导入下方的 App.component.ts 文件中添加这行代码:</p>
<pre><code>declare let modusechoswift;
</code></pre>
<p>在我的例子中, ionic 应用程序中的 Bridging-Header.h 文件位于“其他来源”下。西蒙的帖子提到了一个不同的位置,这最初让我很反感,但这不是问题。事实上,在我的 Xcode 项目中的任何地方移动该头文件似乎没有任何效果。我猜 XCode 不关心文件在哪里,只要它存在。</p></p>
<p style="font-size: 20px;">关于ios - 用 Swift 编写 Cordova/Ionic 插件,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/37237546/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/37237546/
</a>
</p>
页:
[1]