Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 270
kaho Avatar asked Oct 10 '17 18:10

kaho


People also ask

Does NFC Work on iPad?

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.

Can iPad scan NFC tags?

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.

What is Core NFC?

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.


1 Answers

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");
}
like image 71
Tushar Sharma Avatar answered Oct 14 '22 05:10

Tushar Sharma