Scott Condron

Results 5 comments of Scott Condron

UUID is possible by using the array foundTags from the session in `- (void) readerSession:(nonnull NFCNDEFReaderSession *)session didDetectNDEFs:(nonnull NSArray *)messages` ```objc NSArray *foundTags = [session valueForKey:@"_foundTags"]; NSObject *tag = foundTags[0];...

@hansemannn Here is how I did it for phonegap-nfc: https://github.com/chariotsolutions/phonegap-nfc/pull/287/files#diff-84fad93feff6a327c30a08cac8f546dfR171

Apple will in fact reject an app that uses this private api. As for why you can’t read a non-ndef formatted tag, it’s because CoreNFC only detect tags that have...

> As for why you can’t read a non-ndef formatted tag, it’s because CoreNFC only detect tags that have properly formatted NDEF data. This is no longer true with iOS...

> How do I read the tag's uid Assuming the tag is a not a NFCFeliCaTag, it is available in the `identifier` property of the tag object. ```swift func tagReaderSession(_...