我有一个适用于android / iOS的跨平台Xamarin.Forms .net标准应用程序,并希望添加nfc-scan功能。
对于我的第一次测试,我已将所有内容放入 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 函数。如果我运行此代码,一切看起来都很好。当我按下手机上的按钮时,扫描开始,它显示蓝色勾号,但它永远不会进入已实现的方法之一 DidDetect , DidInvalidate 。你知道原因是什么吗?
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。
我在示例代码中看到,他们的类派生自UITableViewController。 这是我的代码和示例代码之间唯一真正的区别。在我从 ViewController 的 NfcScanner 类派生后,它工作了。但我不确定为什么以及它是否正确?
public class NfcScanner : UIViewController, INfcScanner, INFCNdefReaderSessionDelegate
{
...
}
非常感谢你的帮助!
答案 0 :(得分:3)
我试图找到一个答案,为什么它在我从 UIViewController 派生后才起作用。我想我在本教程中找到了它:Core NFC Tutorial
创建会话,我们可以在我们的指定中指定一个委托 NFCNDEFReaderSession类。我想使用NFCHelper类 代表,所以我们必须首先遵守代表协议, NFCNDEFReaderSessionDelegate。 此委托基于Objective-C 对象,所以我们必须首先坚持NSObject。 NFCNDEFReaderSessionDelegate有两个我们必须的委托方法 实现:
UIViewController 继承自 NSObject 。现在,在我将代码更改为:
后,它也可以工作public class NfcScanner : NSObject, INfcScanner, INFCNdefReaderSessionDelegate
{
...
}
答案 1 :(得分:0)
这个问题有点老了,仍然出现在搜索结果的顶部,所以我只想为寻找它的任何人分享一个新的答案。为了访问任何NFC功能,您可以使用Plugin.NFC nuget包。它也支持使用iOS写入NFC标签,并且在GitHub存储库中提供了一个很好的示例。您应该可以直接从视图中使用它 如果您确实需要进行建模,尽管我建议您根据MVVM原理从您的观点进行调用。
我最近使用它并记录了我在How to get started with NFC and Xamarin in 5 minutes上的旅程。