an-rahulpandey / speech-recognition-plugin-ios

Speech Recognition Plugin for Phonegap based on https://github.com/currycat/SpeechToText.git
GNU General Public License v2.0
13 stars 9 forks source link

Build warnings #3

Open videophonegeek opened 9 years ago

videophonegeek commented 9 years ago

SpeechRecognition.m

The cast stops the warning but is it correct? [self.speech setDelegate:(id < SpeechToTextModuleDelegate >) self];

Unused variable? //NSString* jString; NSLog(@"Output = %@",output);

an-rahulpandey commented 9 years ago

You can add the delegation to the interface in header file instead of casting it here. The plugin is very old, I tried to update the plugin one month back, but got stuck with other things. You can comment out the unused variable. Also let me know if the plugin is still working.

videophonegeek commented 9 years ago

I haven't made the plugin function yet. Do you have a platform/ios example that is working?