I have heavily integrated Speechkit into one of my app's view controllers. Speechkit is only available on iOS 10, but I also need my app to run on iOS 9 devices.
Right now, my app crashes on launch on iOS 9 devices; how can I prevent Speechkit from crashing iOS versions 9 and earlier? Can I create two separate view controller files, or do I have to put if #available(iOS 10, *) {
around every single Speechkit reference?
Edit: What can I do instead of this?
import Speech
class ViewController2: UIViewController, SFSpeechRecognizerDelegate {
if #available(iOS 9, *) { // ERROR: Expected Declaration
private let speechRecognizer = SFSpeechRecognizer(locale: Locale(identifier: "en-US"))!
}
func doSomeStuffWithSpeech() {
...
}
...
}
If that's the case, I think creating two separated viewControllers might be easier -or more logical-, you can decide which one should viewed based on the
#available(iOS 10.0, *)
Let's assume that you will present the
ViewController2
based on tapping a button in another ViewController (In the code snippet, I called itPreviousViewController
):Also, you can use it when declaring variables:
But again, as you mentioned, if you have "heavy" integration with Speechkit, I assume that making two Viewcontrollers would be more logical.
Hope this helped.