Device support for Core NFC? does it work on iPad?
Asked Answered
P

2

6

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.

Pessary answered 10/10, 2017 at 18:31 Comment(1)
Check this for iOS 12, because iOS 12 is not allowing to import CoreNFC framework if the device is not supported, so that you even can't check reading availability. https://mcmap.net/q/1050175/-xcode-10-swift-4-app-with-corenfc-crashes-in-review-on-ios-12Subtangent
K
3

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");
}
Krona answered 9/8, 2018 at 10:53 Comment(0)
U
1

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.

Unwilling answered 11/10, 2017 at 5:55 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.