IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> iOS 蓝牙扫描枪功能 -> 正文阅读

[移动开发]iOS 蓝牙扫描枪功能

前面有一篇有关蓝牙扫描枪实现原理的笔记 iOS 蓝牙扫描枪
这里用UITextField这个控件来实现蓝牙扫描的功能

话不多说,直接上代码

#import "ViewController.h"

@interface ViewController ()<UITextFieldDelegate>

@property (nonatomic, strong) UITextField *scanerTextField;

@end

@implementation ViewController

- (UITextField *)scanerTextField {
    if (!_scanerTextField) {
        _scanerTextField = [[UITextField alloc] init];
        _scanerTextField.delegate = self;
        _scanerTextField.spellCheckingType = UITextSpellCheckingTypeNo;
        _scanerTextField.autocorrectionType = UITextAutocorrectionTypeNo;
        // > iOS 9.0,隐藏键盘工具栏
        #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_9_0
            if ([[[UIDevice currentDevice] systemVersion] doubleValue] >= 9.0) {
                _scanerTextField.inputAssistantItem.leadingBarButtonGroups = @[];
                _scanerTextField.inputAssistantItem.trailingBarButtonGroups = @[];
            }
        #endif
    }
    return _scanerTextField;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    //self.scanerTextField.frame = CGRectZero;      // 可设置frame为(0,0,0,0)
    [self.scanerTextField becomeFirstResponder];    // 设置成第一响应中,才会接收外接设备的输入
    [self.view addSubview:self.scanerTextField];    // 如果不添加到试图层的话,不会相应外接的输入
}

#pragma mark - UITextFieldDelegate

// 蓝牙扫描结果会通过此方法回调
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
    
    NSLog(@"%@",textField.text);
    
    return YES;
}

@end

思路很简单,就是使用UITextField这个控件来接收外接输入,蓝牙扫描枪相当于一个外接键盘。

之所以使用UITextField而不使用UITextView的原因时,使用UITextView的话,当iPad外接键盘和蓝牙扫码枪同时使用时,会有冲突,为了避免冲突使用UITextField,在- textFieldShouldReturn: 这个回调里处理扫描结果。

  • 关于系统键盘

有时候使用蓝牙扫描枪的时候,需要隐藏系统键盘,只是不显示系统键盘,可以做如下处理

 UIView *inputView = [[UIView alloc] initWithFrame:CGRectZero];
 _scanerTextField.inputView = inputView;

这样当激活 scanerTextField 成为第一响应者时,就不会弹出键盘了。

代码如下:

- (UITextField *)scanerTextField {
    if (!_scanerTextField) {
        _scanerTextField = [[UITextField alloc] init];
        _scanerTextField.delegate = self;
        _scanerTextField.spellCheckingType = UITextSpellCheckingTypeNo;
        _scanerTextField.autocorrectionType = UITextAutocorrectionTypeNo;
        // > iOS 9.0,隐藏键盘工具栏
        #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_9_0
            if ([[[UIDevice currentDevice] systemVersion] doubleValue] >= 9.0) {
                _scanerTextField.inputAssistantItem.leadingBarButtonGroups = @[];
                _scanerTextField.inputAssistantItem.trailingBarButtonGroups = @[];
            }
        #endif
        // 不显示系统键盘
        UIView *inputView = [[UIView alloc] initWithFrame:CGRectZero];
        _scanerTextField.inputView = inputView;
        [inputView release];
    }
    return _scanerTextField;
}

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
    if (textField.text && textField.text.length) {
    	// 处理扫描事件
    	...
    }
    return YES;
}

- (void)textFieldDidEndEditing:(UITextField *)textField {
    [NSObject cancelPreviousPerformRequestsWithTarget:self];
    [self performSelector:@selector(setScannerKeyboardEditable) withObject:nil afterDelay:0.8];
}

- (void)setScannerKeyboardEditable {
    if (_scanerEnable) {
    	self.scanerTextField.enabled = YES;
    	if (self.scanerTextField != nil && [self.scanerTextField canBecomeFirstResponder] && ![self.scanerTextField isFirstResponder]) {
        	[self.scanerTextField becomeFirstResponder];
    	}
    }
    else {
    	self.scanerTextField.enabled = NO;
    }
}

目前测试并没发现什么其他问题。

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-04-01 00:13:15  更:2022-04-01 00:13:39 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 20:03:05-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码