NFCTag - treastrain/TRETJapanNFCReader GitHub Wiki
An object that represents an NFC tag object.
public enum NFCTag
os(iOS) && !targetEnvironment(macCatalyst)
-
@available(iOS 13.0, *) public init(from coreNFCInstance: CoreNFC.NFCTag)
FeliCa tag.
case feliCa(FeliCaTag)
ISO14443-4 type A / B tag with ISO7816 communication.
case iso7816
ISO15693 tag.
case iso15693
MiFare technology tag (MIFARE Plus, UltraLight, DESFire) base on ISO14443.
case miFare
Check whether a detected tag is available. Returns true
if tag is available in the current reader session. A tag remove from the RF field will become unavailable. Tag in disconnected state will return false
.
public var isAvailable: Bool