CoreNFC 有一个错误的委托方法:
//Called when the NFC session invalidates with an error.
- (void)readerSession:(nonnull NFCNDEFReaderSession *)session didInvalidateWithError:(nonnull NSError *)error {
}
文档 ( https://developer.apple.com/documentation/corenfc ) 在错误部分 ( https://developer.apple.com/documentation/corenfc/nfcreadererror ) 上显示了一堆错误代码。
我希望能够读取来自阅读器会话的错误并将其放在 switch 语句中,这样我可以为每个错误输出不同的消息。我不知道如何从函数中获取这些错误消息。我假设我在基本目标 c 上错过了一些东西。
我希望得到的是这样的东西。
switch (error) {
case NFCReaderErrorSecurityViolation:
//Do Stuff
break;
case NFCReaderErrorUnsupportedFeature:
//NFC is unsupported.
break;
//ETC
default:
break;
}
我怎么得到它?