iOS NFC

Posted 鸿鹄当高远

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS NFC相关的知识,希望对你有一定的参考价值。

 

 

#import <CoreNFC/CoreNFC.h>


@interface ViewController ()<NFCNDEFReaderSessionDelegate>

@property (nonatomic,retain) UIButton *beginTestBtn;

@property (nonatomic,retain) UILabel *textLabel;


@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    _beginTestBtn = [[UIButton alloc]initWithFrame:CGRectMake(100, 100, 100, 50)];
    [_beginTestBtn setTitle:@"开始读取" forState:UIControlStateNormal];
    [_beginTestBtn setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];
    _beginTestBtn.titleLabel.textAlignment = NSTextAlignmentLeft;
    [_beginTestBtn addTarget:self action:@selector(beginTestBtnAction) forControlEvents:UIControlEventTouchUpInside];
    
    
    _textLabel = [[UILabel alloc]initWithFrame:CGRectMake(120, 180, 200, 50)];
    _textLabel.text = @"待读取";
    _textLabel.textColor = [UIColor orangeColor];
    [self.view addSubview:_textLabel];
    
    NSLog(@"进入VC");
    
    [self.view addSubview:_beginTestBtn];
    [self.view addSubview:_textLabel];
    
    
    // Do any additional setup after loading the view, typically from a nib.
}


-(void)beginTestBtnAction
{
    
    /**
     三个参数
     第一个参数:代理对象
     第二个参数:线程
     第三个参数:Session读取一个还是多个NDEF。YES:读取一个结束,NO:读取多个
     */
    
    NFCNDEFReaderSession *session = [[NFCNDEFReaderSession alloc] initWithDelegate:self queue:dispatch_queue_create(NULL, DISPATCH_QUEUE_CONCURRENT) invalidateAfterFirstRead:YES];
    
    [session beginSession];
    
}


/**
 代理
 */
- (void) readerSession:(nonnull NFCNDEFReaderSession *)session didDetectNDEFs:(nonnull NSArray<NFCNDEFMessage *> *)messages {
    
    __weak typeof(self) weakself=self;
    dispatch_async(dispatch_get_main_queue(), ^{
        weakself.textLabel.text = @"读取成功";
    });
    
    for (NFCNDEFMessage *message in messages) {
        for (NFCNDEFPayload *payload in message.records) {
            NSLog(@"Payload data:%@",payload.payload);
        }
    }
}

- (void)readerSession:(NFCNDEFReaderSession *)session didInvalidateWithError:(NSError *)error{
    
     NSLog(@"error:%@",error);
    
    __weak typeof(self) weakself=self;
    dispatch_async(dispatch_get_main_queue(), ^{
        weakself.textLabel.text = @"读取失败";
    });
    
    
}

 

以上是关于iOS NFC的主要内容,如果未能解决你的问题,请参考以下文章

如何为 iOS AppClips 创建 QR/NFC 标签

有没有办法制作一个可以与 NFC 交互的 IOS 应用程序? [复制]

iOS NFC

在我的应用程序中读取 iOS 13 NFC 前台标签,同时读取 iOS 后台

iOS NFC开发(OC、swift双语实现)

iOS 13 和 Xcode 11 中的配置文件问题中缺少 NFC 标签协议