YYTextView 支持iOS15扫描文本
2021-09-26 本文已影响0人
吃货_X
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
}
}