iOS11 Core NFC
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]
).
实现
调试环境 Xcode9 beta + iPhone7
需要注意的CoreNFC当前没有X86的版本,需要真机调试,否则报错。。。 (Xcode9正式版没有这个问题)
-
新建AppleId,勾选
NFC Tag Reading
-
新建工程配置好BundleId,与AppleId相匹配。添加
-
info.plist添加
<key>NFCReaderUsageDescription</key> <string>We are going to use you NFC!</string>
-
.entitlements
文件添加内容: (Xcode9正式版,直接勾选target->Capabilities->Near Field Communication Tag Reading即可)<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];
dispatch_async(dispatch_get_main_queue(), ^{
self.showingLabel.text = [[NSString alloc]initWithData:payload.payload encoding:NSUTF8StringEncoding];
});
}
}
}
- (void)readerSession:(NFCNDEFReaderSession *)session didInvalidateWithError:(NSError *)error{
NSLog(@"%@",error);
}
-
运行
ok,先这样了。 明天用公司的卡片试试。。
// ---更新 6.9
在iPhone7上做测试,发现直到超时都没有读取出到数据,项目配置没检查出问题。
怀疑是否是卡片的原因?
或者等出iOS11正式出了,在进行测试吧
--- 更新 2017-09-21
iOS11正式版出来了,现在能读取到NFC标签中的数据了
参考
https://developer.apple.com/documentation/corenfc
https://stackoverflow.com/questions/44380305/ios-11-core-nfc-any-sample-code