Reputation: 369
iOS 15 supports captureTextFromCamera
API to capture text from camera.But some devices don't supports such as iPhoneX.So How can I know this device supports captureTextFromCamera
or not ?
Upvotes: 1
Views: 669
Reputation: 330
For iOS 16 Apple add a new way to check Live Text support ImageAnalyzer.isSupported
A Boolean value that indicates whether the device supports Live Text for images.
Apple Official Document: VisionKit/ImageAnalyzer/isSupported
Upvotes: 1
Reputation: 128
One simple condition:
UITextField().canPerformAction(#selector(UIResponder.captureTextFromCamera(_:))
Tests both device support and language setting support
Upvotes: 2