私は次のようにplugin.xml内でiOS用のプラグインファイルを宣言しました:
<config-file target="config.xml" parent="/*">
<feature name="CDVOP">
<param name="ios-package" value="CDVOP"/>
</feature>
</config-file>
<header-file src="src/ios/CDVOP.h" />
<source-file src="src/ios/CDVOP.m" />
プラグインJavaScriptファイルには、後でJavaScriptアプリから呼び出すこの関数があります。
showCatPictures: function(interval) {
exec(null, null, 'CDVOP', 'showCatPictures', [interval]);
},
Xcodeからこのプラグインを使用するアプリを実行して、デバッグ出力を確認しています。 showCatPictures
関数を呼び出すと、次のようになります。
OP Cordova Tests[1122:60b] ERROR: Plugin 'CDVOP' not found, or is not a CDVPlugin. Check your plugin mapping in config.xml.
2014-02-14 16:23:45.233 OP Cordova Tests[1122:60b] -[CDVCommandQueue executePending] [Line 127] FAILED pluginJSON = [
"INVALID",
"CDVOP",
"showCatPictures",
[
30
]
]
私はこれを疑っていますmay私がインポートしたすべてのものと関係があるので、ここにCDVOP.hがあります
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <Cordova/CDVPlugin.h>
#import <Cordova/CDV.h>
#import <Cordova/CDVViewController.h>
//OP SDK
#import "OpenpeerSDK/HOPStack.h"
#import "OpenpeerSDK/HOPLogger.h"
#import "OpenpeerSDK/HOPMediaEngine.h"
#import "OpenpeerSDK/HOPCache.h"
#import "OpenpeerSDK/HOPAccount.h"
#import "OpenpeerSDK/HOPIdentity.h"
@interface CDVOP : CDVPlugin <UIWebViewDelegate> {
NSString* callbackId;
UIImageView* peerImageView;
UIImageView* selfImageView;
}
@property (nonatomic, copy) NSString* callbackId;
@property (retain, nonatomic) UIImageView *peerImageView;
@property (retain, nonatomic) UIImageView *selfImageView;
- (void) authorizeApp:(CDVInvokedUrlCommand*)command;
- (void) configureApp:(CDVInvokedUrlCommand*)command;
- (void) getAccountState:(CDVInvokedUrlCommand*)command;
- (void) startLoginProcess:(CDVInvokedUrlCommand*)command;
- (void) showCatPictures:(CDVInvokedUrlCommand*)command
@end
これはCDVOP.mの上部です。
#import "CDVOP.h"
@implementation CDVOP
@synthesize webView, selfImageView, peerImageView, callbackId;
-(CDVPlugin*) initWithWebView:(UIWebView*)theWebView
{
self = (CDVOP*)[super initWithWebView:theWebView];
NSLog(@">>> initializing with cordova webView <<<"); // actually this does not get called!
return self;
}
// stress test UIImageViews using a series of cat pictures
- (void)showCatPictures:(CDVInvokedUrlCommand*)command
{
//initialize and configure the image view
CGRect selfRect = CGRectMake(0, 0, 100.0, 200.0);
self.selfImageView = [[UIImageView alloc] initWithFrame:selfRect];
[self.webView.superview addSubview:self.selfImageView];
// load pictures and start animating
NSLog(@"displaying cat pictures");
selfImageView.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"1.JPG"], [UIImage imageNamed:@"2.JPG"], [UIImage imageNamed:@"3.JPG"],
[UIImage imageNamed:@"4.JPG"], [UIImage imageNamed:@"5.JPG"], [UIImage imageNamed:@"6.JPG"],
[UIImage imageNamed:@"7.JPG"], [UIImage imageNamed:@"8.JPG"], nil];
selfImageView.animationDuration = 0.3;
[selfImageView startAnimating];
}
プラグインが適切に初期化されていないように見える理由と、そのメソッドをexec
で呼び出せない理由はありますか?
これは私が質問で言及するのを忘れた小さな重要でない詳細です。これは、プラグインを使用したサンプルアプリのwww/config.xml
がどのように見えるかです。問題を見つけることができますか?
<widget id="org.sample.test" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.Apache.org/ns/1.0">
<name>My Cordova Test</name>
<description>
A series of tests demonstrating the use of my cordova plugin
</description>
<author email="" href="">
That would be me
</author>
<content src="index.html" />
<access Origin="*" />
</widget>
アプリケーション名<name>My Cordova Test</name>
のスペースに注意してください。これは最初は機能しているように見えますが、後でプラグインをホストするフォルダー名にスペースを入れます。プラグインのインストールプロセスを妨げるには、これで十分です。これは私が問題を修正するためにしたことです:
MyCordovaTest
に変更しましたcordova platform remove ios
cordova plugin remove org.myplugin.cordova
cordova platform add ios
cordova plugin add ../my-plugin
cordova build ios
これで、プラグインが正しくインストールされ、期待どおりに初期化されました。この問題のデバッグを手伝ってくれた#phonegap
IRC部屋の素敵な人々に感謝します。これが誰かに役立つことを願っています。
私の場合、iOSで同じ問題に直面したとき、エラーはplugin.xmlプラグインのファイルにありました。
_ <config-file target="config.xml" parent="/*">
<feature name="UDPSender">
<param name="ios-package" value="UDPSender"/>
</feature>
</config-file>
_
値がSwiftファイルに存在する値と一致していませんでした、Swiftファイルのクラスの開始はそのようなものでした
@objc(HWPUDPSender) public class UDPSender: CDVPlugin, GCDAsyncUdpSocketDelegate{
ここではplugin.xml値はDPSenderですが、SwiftファイルではHWPUDPSenderであり2つは同じである必要があります