kaho
kaho

Reputation: 4784

Device support for Core NFC? does it work on iPad?

Does Core NFC works on iPad?

To sum up, iPad does have NFC chips, but the Core NFC documentation does not say it support it.

Note

Reading NFC NDEF tags is supported on iPhone 7 and iPhone 7 Plus.

running this iOS11-NFC-Example on emulator will always get Feature not supported on all devices.

Upvotes: 6

Views: 3185

Answers (2)

Tushar Sharma
Tushar Sharma

Reputation: 86

No ! for now Core NFC don't support iPads and iPhone lesser than iPhone 7.

iPhone Series of 7, 8 and iPhone X only supported by Core NFC. and if you want to identify in your code that the device your app is running on supports Core NFC or not can be done by this

if (NFCNDEFReaderSession.readingAvailable)

   {
        NSLog(@"NFC is Available");
}
else
{
 NSLog(@"NFC is not Available");
}

Upvotes: 3

Jack
Jack

Reputation: 14329

As in WWDC 2017

Apple doc

NFC tag reading is available for iPhone 7 & iPhone 7 plus. May be in future release they make them available.

Upvotes: 1

Related Questions