NFCTagReaderSession_PollingOption - treastrain/TRETJapanNFCReader GitHub Wiki
Options that determine the type of tags that a reader session should detect during a polling sequence.
struct PollingOption : OptionSet, Codable
You can combine options to have the reader session scan and detect different tag types at the same time.
CaseIterable
, Codable
, OptionSet
public init(rawValue: Int)
os(iOS) && !targetEnvironment(macCatalyst)
-
@available(iOS 13.0, *) public init(from coreNFCInstance: CoreNFC.NFCTagReaderSession.PollingOption)
The option for detecting ISO 7816-compatible and MIFARE tags.
public static var iso14443
Supports NFC type A and B modulation.
The option for detecting ISO 15693 tags.
public static var iso15693
The option for detecting FeliCa tags.
public static var iso18092
public var rawValue: Int
public static var allCases: [Self] = [
.iso14443,
.iso15693,
.iso18092,
]