SpeechKit Pod for Swift results in undeclared type errors

I implemented Nuance SpeechKit using this CocoaPod https://cocoapods.org/pods/SpeechKit and following the instructions from the accepted SO answer here: https://stackoverflow.com/a/1678548/ ...

After that, I get "using a Uneclared error like" SKRecognizerDelegate ":

Supporting files: as well enter image description here enter image description hereenter image description here

Errors in the UIViewController: SKRecognizerDelegate Error Screen

0
source share
1 answer

The only difference that I see is these # ifndef / # define lines in the bridge file,

#ifndef Vanilla_Bridge_h
#define Vanilla_Bridge_h
#import <SpeechKit/SpeechKit.h>

, , , : http://www.learnswiftonline.com/getting-started/adding-swift-bridging-header/ !

0

All Articles