美文网首页
YYTextView 支持iOS15扫描文本

YYTextView 支持iOS15扫描文本

作者: 吃货_X | 来源:发表于2021-09-26 11:26 被阅读0次
    class YYTextViewCamera: YYTextView {
        override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool {
            let allow = super.canPerformAction(action, withSender: sender)
            if #available(iOS 15.0, *) {
                if allow == false,(action == #selector(captureTextFromCamera(_:))) {
                    return true
                }
            }
            return allow
        }
    }
    

    相关文章

      网友评论

          本文标题:YYTextView 支持iOS15扫描文本

          本文链接:https://www.haomeiwen.com/subject/skdqnltx.html