使用委托绑定方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用委托绑定方法相关的知识,希望对你有一定的参考价值。

我正在创建一个绑定库来绑定本机Objective-C框架。

我有以下委托,我需要将它的声明添加到ApiDefinition文件,然后我需要使用我的Xamarin.ios应用程序实现它:

- (void)Initialize:(id <MMSDKDelegate> _Nullable)pDelegate;

MMSDKDelegate:

@protocol MMSDKDelegate <IMMDelegate>
- (void)Started;
@end

IMMDelegate:

@protocol IMMDelegate
- (void)Inserted;
- (void)Removed;
- (void)ReaderConnected;
- (void)ReaderRemoved;
@end

我需要ApiDefinition文件中的必需定义,我需要一个示例代码来从我的Xamarin.iOS应用程序调用此方法。

更新

我正在处理的框架是与附带iPhone的card reader device进行通信以读取身份证信息,它具有在读取器上插入/移除和插入/移除卡片时调用的方法。

我已经实现了@ cole-xia的答案,但问题是当我插入读卡器或ID时,IMMDelegate中的方法永远不会被调用。当我调用ReadCardData()时,它应该调用Started(),它将显示由Inserted()保存的信息,但是当前结果是调用Started()后调用ReadCardData()方法,但Inserted()ReaderConnected()在任何阶段都不会被调用。

在Framework的演示应用程序中,它用作以下(并且正常工作):

// Demo app -> ViewController.m

@interface ViewController () <MMSDKDelegate>

@end


@implementation ViewController {
    MMSDK *sdkInstance;
}


- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];

    sdkInstance = [MMSDK SharedInstance];
    [sdkInstance Initialize:self];
}


- (void)Started
{
    // Update UI by: reading in progress ..
}


- (void)Inserted
{
    // Update UI by: card inserted
    // And read card data
    [self readData:self];
}

- (void)Removed
{
    // Update UI by: card removed
}

- (void)ReaderConnected
{
    // Update UI by: card reader connected
}

- (void)ReaderRemoved
{
    // Update UI by: card reader removed
}


- (IBAction)readData:(id)sender
{
    var *data = [sdkInstance ReadCardData:YES pWithSignatureImage:YES pWithAddressData:YES];
    if (data.hasError) {
        // No data fetched
        return;
    }

    if (data) {
        // return card data
    }
}

欢迎并赞赏所有建议。

总之,我只需要在Xamarin.iOS应用程序中执行相同的演示应用程序功能。

答案

使用Sharpie创建ApiDefinition

结果在我身边:

// @protocol IMMDelegate
[BaseType (typeof (NSObject))]
[Protocol, Model]
interface IMMDelegate
{
    // @required -(void)Inserted;
    [Abstract]
    [Export ("Inserted")]
    void Inserted ();

    // @required -(void)Removed;
    [Abstract]
    [Export ("Removed")]
    void Removed ();
}

// @protocol MMSDKDelegate <IMMDelegate>
[BaseType (typeof (NSObject))]
[Protocol, Model]
interface MMSDKDelegate : IMMDelegate
{
    // @required -(void)Started;
    [Abstract]
    [Export ("Started")]
    void Started ();
}

// @interface ACR : NSObject
[BaseType (typeof(NSObject))]
interface YourClass
{
    // -(void)Initialize:(id<MMSDKDelegate> _Nullable)pDelegate;
    [Export ("Initialize:")]
    void Initialize ([NullAllowed] MMSDKDelegate pDelegate);
}

用法:

class MyDelegate : MMSDKDelegate {
    public void Started()
    {
    }

    public override void Removed()
    {
    }
    public override void Inserted()
    {
    }
}


//In ViewController

public override void ViewDidLoad()
{
    base.ViewDidLoad();

    YourClass yourClass = new YourClass();
    yourClass.Initialize(new MyDelegate());
}
另一答案

除了Cola Xia的回答,您可能还需要确保这样的第三方设备SDK集成需要info.plist文件的"Supported external accessory protocols"密钥中的一些条目。

请检查XCode示例并检查是否有"Supported external accessory protocols"密钥的条目。如果它在那里,那么你应该将它们添加到你的Xamarin.iOS项目的info.plist文件中。

我希望这可能会有所帮助!

以上是关于使用委托绑定方法的主要内容,如果未能解决你的问题,请参考以下文章

有没有更聪明的方法将布局绑定到片段?

使用委托绑定方法

事件绑定事件监听和事件委托

JS 中的事件绑定事件监听事件委托

JS 事件绑定事件监听事件委托详细介绍

委托和事件