I'm trying to implement background NFC tag reading for an iOS app. The NFC tag I am using has specific requirements as to the format that must be written - specifically, only the second record can be a URI, and it must be 56 characters long.
I've constructed and written the following NDEF message:
let message = NFCNDEFMessage(records: [
NFCNDEFPayload(
format: .nfcExternal,
type: "-- omitted --".data(using: .utf8)!,
identifier: "".data(using: .utf8)!,
payload: "-- omitted --".data(using: .utf8)!
),
NFCNDEFPayload(
format: .nfcWellKnown,
type: "U".data(using: .utf8)!,
identifier: "".data(using: .utf8)!,
payload: "https://apple.com? ".data(using: .utf8)!
),
NFCNDEFPayload(
format: .nfcWellKnown,
type: "T".data(using: .utf8)!,
identifier: "".data(using: .utf8)!,
payload: "-- omitted --".data(using: .utf8)!
)
])
Now when I touch an iOS device to the phone, I get a prompt saying (original in parens, assumed English translation first):
NFC-TAG DETECTED (NFC-TAG GEDETECTEERD)
No usable data found (Green bruikbare gegevens gevonden)
I have tried replacing the whitespace with ?_______...
or with Universal Links but I always get the same response. When I try reading other NFC tags that I have not written to I don't get the prompt, so I know the new message is activating background reading, but I can't figure out why it can't be read.
My only guess is that iOS is not decoding the .utf8
byte array, but I don't know how else to store/encode a message to an NFC tag
I replaced:
with:
I don't know why
Perhaps someone else can yet explain this solution. However, it works!