• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

c# - 如何从 viewmodel 使用 iOS/Xamarin 扫描 NFC 标签

[复制链接]
菜鸟教程小白 发表于 2022-12-13 15:54:53 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有一个适用于 Android/iOS 的跨平台 Xamarin.Forms .net 标准应用程序,我想添加 nfc 扫描功能。

对于我的第一个测试,我将所有内容都放入了我的 AppDelegate 类中。 此代码有效:

public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate, INFCNdefReaderSessionDelegate
{
    public NFCNdefReaderSession Session { get; set; }

    public override bool FinishedLaunching(UIApplication app, NSDictionary options)
    {
        global::Xamarin.Forms.Forms.Init();

        if (Session == null)
        {
            Session = new NFCNdefReaderSession(this, null, true);
        }
        Session = new NFCNdefReaderSession(this, null, true);
        Session?.BeginSession();

        LoadApplication(new App());

        return base.FinishedLaunching(app, options);
    }

    public void DidInvalidate(NFCNdefReaderSession session, NSError error)
    {
        Console.WriteLine("ServiceToolStandard DidInvalidate: " + error.ToString());
    }

    public void DidDetect(NFCNdefReaderSession session, NFCNdefMessage[] messages)
    {
        var bytes = messages[0].Records[0].Payload.Skip(3).ToArray();
        var message = Encoding.UTF8.GetString(bytes);
        Console.WriteLine("ServiceToolStandard DidDetect: " + message);
    }
}

我的问题:

之后,我将所有内容都放入了一个新的 NfcScanner 类中,并希望从我的 ViewModel 中调用 ScanAsync 函数。如果我运行这段代码,一切看起来都很好。当我按下手机上的按钮时扫描开始,它显示蓝色勾号,但随后它永远不会进入已实现的方法之一DidDetectDidInvalidate。你知道可能是什么原因吗?

public class NfcScanner : INfcScanner, INFCNdefReaderSessionDelegate
{
    public string ErrorText { get; private set; }

    private NFCNdefReaderSession _session;
    private TaskCompletionSource<string> _tcs;

    public Task<string> ScanAsync()
    {
        if (!NFCNdefReaderSession.ReadingAvailable)
        {
            throw new InvalidOperationException("Reading NDEF is not available");
        }

        _tcs = new TaskCompletionSource<string>();
        _session = new NFCNdefReaderSession(this, null, true);
        _session.BeginSession();

        return _tcs.Task;
    }

    public void DidInvalidate(NFCNdefReaderSession session, NSError error)
    {
        Console.WriteLine("ServiceToolStandard DidInvalidate: " + error.ToString());
        _tcs.TrySetException(new Exception(error?.LocalizedFailureReason));
    }

    public void DidDetect(NFCNdefReaderSession session, NFCNdefMessage[] messages)
    {
        Console.WriteLine("ServiceToolStandard DidDetect msgs " + messages.Length);
        var bytes = messages[0].Records[0].Payload.Skip(3).ToArray();
        var message = Encoding.UTF8.GetString(bytes);
        Console.WriteLine("ServiceToolStandard DidDetect msg " + message);
        _tcs.SetResult(message);
    }

    public IntPtr Handle { get; }

    public void Dispose()
    {
        Console.WriteLine("ServiceToolStandard Dispose");
    }
}

我还尝试制作一个无效的 Scan() 方法并直接从 AppDelegate 调用它。结果是一样的。扫描窗口打开并显示蓝色勾号,但它从未到达方法 diddetect、didinvalidate。


编辑 07.02.2018 16:56:

我在示例代码中看到,它们的类派生自 UITableViewController。 这是我的代码和示例代码之间唯一真正的区别。在我从 ViewController 派生我的 NfcScanner 类后,它起作用了。但我不确定为什么以及它是否是正确的方法?

public class NfcScanner : UIViewController, INfcScanner, INFCNdefReaderSessionDelegate
{
 ...
}

非常感谢您的帮助!



Best Answer-推荐答案


我试图找到一个答案,为什么它在我从 UIViewController 派生后起作用。我想我在本教程中找到了它:Core NFC Tutorial

Creating a session, we can specify a delegate in our NFCNDEFReaderSession class. I would like to use the NFCHelper class as the delegate, so we must first adhere to the delegate protocol, NFCNDEFReaderSessionDelegate. This delegate is based on an Objective-C object, so we must first also adhere to NSObject. NFCNDEFReaderSessionDelegate has two delegate methods we must implement:

UIViewController 继承自 NSObject。现在我将代码更改为:

public class NfcScanner : NSObject, INfcScanner, INFCNdefReaderSessionDelegate
{
 ...
}

关于c# - 如何从 viewmodel 使用 iOS/Xamarin 扫描 NFC 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48645959/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap