Core NFC可以在iPad上运行吗?
总结一下,iPad does have NFC chips,但Core NFC documentation并不表示支持它。
注意
iPhone 7和iPhone 7 Plus支持读取NFC NDEF标签。
在模拟器上运行此iOS11-NFC-Example将始终在所有设备上获得Feature not supported
。
答案 0 :(得分:3)
不!目前,Core NFC不支持小于iPhone 7的iPad和iPhone。
Core NFC仅支持iPhone 7、8和iPhone X系列。 和 如果您想在代码中确定您的应用所运行的设备是否支持Core NFC,则可以这样做
if (NFCNDEFReaderSession.readingAvailable)
{
NSLog(@"NFC is Available");
}
else
{
NSLog(@"NFC is not Available");
}
答案 1 :(得分:1)