After upgrading to iOS 16, the code below that I have to read the NDEF contents of an NFC Forum Type 2 Tag now returns an empty string. When running the same code on my iOS 15 device, this code works perfectly. When downgrading my iOS 16 device to iOS 15, this code works perfectly again. I can't find any documentation regarding changes made to CoreNFC in iOS 16 that would be affecting this, can anyone shed any light here please? func readerSession(_ session: NFCNDEFReaderSession, didDetect tags: [NFCNDEFTag]) { print(did detect) let str: String = nfcWriteContent if (tags.count > 1) { let retryInterval = DispatchTimeInterval.milliseconds(500) session.alertMessage = too_many_nfc_detected.localized() DispatchQueue.global().asyncAfter(deadline: .now() + retryInterval, execute: { session.restartPolling() }) return } let tag = tags.first! print(reading...) tag.readNDEF(completionHandler: {(ndefMessage: NFCNDEFMessage?, error: Error?) in var res = if (ndefMessage == nil) { // EVERY NFC SCAN ALW