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.
Since the iPhone is the only iOS device that features NFC (a short-distance communication protocol that enables contactless payments), it makes sense that the entire system would be built with the iPhone in mind.
iOS does not have any native support for reading NFC tags and performing actions on the local device. A 3rd party app must be installed to implement these actions. Android has always handled basic NDEF record types natively, without an app installed.
Core NFC is an exciting new framework that enables you to read NFC tags in your apps on iPhone 7 and iPhone 7 Plus. Learn how to integrate Core NFC into your apps, key requirements for using this feature, and start thinking about the new kinds of apps that are enabled with NFC capabilities.
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");
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With