iPhone6开始开始支持NFC(Near Field Communication
),但是最近苹果最近开放了NFC的部分接口。
可以实现检测NFC标签(NFC tags)并读取包含NDEF(NFC Data Exchange Format)数据。
最起码能当读卡器玩了吧。
概述
Core NFC
可以读取NFC tags,提供给用户有关其物理环境和实体对象的更多信息。例如,小明在逛商场,他可以通过应用程序的NFC功能获取到一些相关的商品信息。
Note
读取NFC NDEF tag
当前只支持到iPhone7/7+
使用Core NFC,您可以读取符合NFC数据交换格式(NDEF)的五种标签(type1到5)。
想要阅读标签,需要创建一个NFCNDEFReaderSession
的实例并设置代理。session会对NFC标签进行轮询,当找到NDEF
的消息时,会通过代理回调。代理收到消息后会,我们将session置为invalid([session invalidateSession]
).
判断是否支持NFC
见官方文档: https://developer.apple.com/documentation/corenfc/nfcndefreadersession/2915854-readingavailable
//#import <CoreNFC/CoreNFC.h>
+ (BOOL)checkNFCSupport{
if (@available(iOS 11, *)) {
return NFCNDEFReaderSession.readingAvailable;
} else {
return NO;
}
}
实现
调试环境 Xcode9 beta + iPhone7
需要注意的CoreNFC当前没有X86的版本,需要真机调试,否则报错。。。
-
新建AppleId,勾选NFC Tag Reading
-
新建工程配置好BundleId,与AppleId相匹配。添加
-
.entitlements
文件添加内容:
<key>com.apple.developer.nfc.readersession.formats</key>
<array>
<string>NDEF</string>
</array>
-
代码实现比较简单
#import <CoreNFC/CoreNFC.h>
@interface ViewController ()<NFCNDEFReaderSessionDelegate>
@end
@implementation ViewController
- (IBAction)clicked:(id)sender {
NFCNDEFReaderSession *session = [[NFCNDEFReaderSession alloc] initWithDelegate:self queue:nil invalidateAfterFirstRead:NO];
//NSLog(@" ready ? %@", @([session isReady]));
[session beginSession];
}
#pragma mark - NFCNDEFReaderSessionDelegate
- (void) readerSession:(nonnull NFCNDEFReaderSession *)session didDetectNDEFs:(nonnull NSArray<NFCNDEFMessage *> *)messages {
for (NFCNDEFMessage *message in messages) {
for (NFCNDEFPayload *payload in message.records) {
NSLog(@"Payload data:%@",payload.payload);
//[session invalidateSession];
}
}
}
- (void)readerSession:(NFCNDEFReaderSession *)session didInvalidateWithError:(NSError *)error{
NSLog(@"%@",error);
}
-
运行
ok,先这样了。 明天用公司的卡片试试。。
参考
https://developer.apple.com/documentation/corenfc
https://stackoverflow.com/questions/44380305/ios-11-core-nfc-any-sample-code