设备是否支持Core NFC?在iPad上可以使用吗? [英] Device support for Core NFC? does it work on iPad?

查看:95
本文介绍了设备是否支持Core NFC?在iPad上可以使用吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Core NFC是否可以在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.

注意

iPhone 7和iPhone 7 Plus支持读取NFC NDEF标签.

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

在模拟器上运行此 iOS11-NFC-Example 总是会得到 Feature并非在所有设备上都支持.

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

推荐答案

否!目前,Core NFC不支持小于iPhone 7的iPad和iPhone.

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

Core NFC仅支持iPhone 7、8和iPhone X系列.和如果您想在代码中确定您的应用所运行的设备是否支持Core NFC,则可以这样做

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");
}

这篇关于设备是否支持Core NFC?在iPad上可以使用吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆