iOS 15 UITextField长按菜单支持live text 扫描插入文字功能

1.需求背景

iOS15上有一个非常好用的scan text (也可以叫live text)功能,如果能加上,用于扫描文本OCR(光学字符识别Optical Character Recognition),直接插入到textField里还是很方便的。

ios15-iphone12-pro-photos-copy-text.png

2.为什么目前不支持?

因为我用的自定义textField,没有针对scan text进行适配。我查阅了很多关于iOS15 OCR的资料。但是给textField长按菜单,加上scan text的内容没有找到,大体都说自定义长按菜单需要在

override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool

这个函数里去添加对应的action,然后

override func target(forAction action: Selector, withSender sender: Any?) -> Any?

这个函数里也要去做对应方法的实现,才能有对应的功能。

那么scan text对应的是哪个selector方法呢?

UIResponderStandardEditActions这个类里,并没有看到和OCR或者scan text相关的方法。然后我翻阅官方文档,找到了个很类似OCR的API

extension UIResponder {
    @available(iOS 15.0, *)
    open func captureTextFromCamera(_ sender: Any?)
}

试了下,果然就是这个玩意儿

所以如果你要你的自定义textField或者textview拥有scan text OCR的能力,那么应该如下实现。

3.实现

override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool {
    if #available(iOS 15.0, *) {
        if action == #selector(UIResponderStandardEditActions.paste(_:)) ||
            action == #selector(UIResponder.captureTextFromCamera(_:)){
            return true
        }
    } else {
        return super.canPerformAction(action, withSender: sender)
    }
    return super.canPerformAction(action, withSender: sender)
}
override func target(forAction action: Selector, withSender sender: Any?) -> Any? {
    if #available(iOS 15.0, *) {
        if action == #selector(UIResponderStandardEditActions.paste(_:)) ||
            action == #selector(UIResponderStandardEditActions.select(_:)) ||
            action == #selector(UIResponderStandardEditActions.selectAll(_:)) ||
            action == #selector(UIResponder.captureTextFromCamera(_:)) {
            return super.target(forAction: action, withSender: sender)
        }
    } else {
        // Fallback on earlier versions
        if action == #selector(UIResponderStandardEditActions.paste(_:)) ||
            action == #selector(UIResponderStandardEditActions.select(_:)) ||
            action == #selector(UIResponderStandardEditActions.selectAll(_:))
            {
            return super.target(forAction: action, withSender: sender)
        }
    }
    return nil
}

4.限制

4.1 版本和设备限制

只支持iOS15+,且iPhone Xs及以后的设备。如下是官方说明

For this property to be true, the device must have the A12 Bionic chip or later.

所以我们需要判断iOS 系统版本是iOS15,且支持OCR。

4.2 如何判断是否支持live text

一种是ImageAnalyzer.isSupported,如果是iOS 16就用这个判断,需要引入import VisionKit 这个visionKit。

另一种是利用实例化方法, canPerformAction(_:withSender:) ,官方的说法如下:

To determine whether the data scanner runs on the user’s device, pass captureTextFromCamera(_:) to the canPerformAction(_:withSender:) method.

例如

if UITextField().canPerformAction(#selector(UIResponder.captureTextFromCamera(_:)), withSender: self) { ... }

我之前以为直接用button的实例,来判断就可以了,居然不生效。一直返回false,我还不清楚说明原因。但是用上面这种,直接声明一个UITextField的实例来判断,就正常了,真的神奇。如果是在UIController里面,用下面的代码也可以:

if #available(iOS 15.0, *), self.canPerformAction(#selector(UIResponder.captureTextFromCamera(_:)), withSender: self) {
    print("support live text")
    button.addTarget(self, action: #selector(UIResponder.captureTextFromCamera(_:)), for: .touchUpInside)
} else {
    print("this device is not support live text")
}

所以这个条件,也是有点迷。

5.扩展运用 -- 如何自定义一个按钮,调用scan text识别文字功能?

自定义的按钮,和textField最大的不同,就是textField默认遵循了UIKeyInput or UITextInput 这两个中的某个协议,所以我们自定定义的按钮,那么我们要自己去遵循至少,这两个之一的协议,然后实现对应的代理方法,否则会崩溃。官方说明如下:

To receive callbacks from the data scanner, the responder should conform to either the UIKeyInput or UITextInput protocol. If it conforms to UIKeyInput, the scanner calls the insertText: protocol method. If it conforms to UITextInput, the scanner calls the setMarkedText(_:selectedRange:) and unmarkText() protocol methods.

class ViewController: UIViewController, UIKeyInput {
        var hasText: Bool = false
        
    override func viewDidLoad() {
        super.viewDidLoad()
        let button = UIButton.init(frame: CGRect(x: 100, y: 200, width: 100, height: 100))
                if #available(iOS 15.0, *), self.canPerformAction(#selector(UIResponder.captureTextFromCamera(_:)), withSender: self) {
            print("support live text")
            button.addTarget(self, action: #selector(UIResponder.captureTextFromCamera(_:)), for: .touchUpInside)
        } else {
            print("this device is not support live text")
        }
        button.backgroundColor = .red
        view.addSubview(button)
    }
    
    func deleteBackward() {
        
    }
    
    func insertText(_ text: String) {
        //ORC scan text的 insert Text 按钮回调
        print("OCR 扫描到的文字是: \(text)")
        labelTest.text = text
    }
}

参考文献:

https://developer.apple.com/documentation/uikit/uiresponder/3778577-capturetextfromcamera?changes=_5

https://developer.apple.com/documentation/visionkit/imageanalyzer/3974561-issupported

https://stackoverflow.com/questions/69702884/how-to-know-a-device-is-available-to-use-capturetextfromcamera-api/73995804#73995804

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,039评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,223评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,916评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,009评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,030评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,011评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,934评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,754评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,202评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,433评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,590评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,321评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,917评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,568评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,738评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,583评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,482评论 2 352

推荐阅读更多精彩内容