Ok so I need to do this:
Wait for command, "Goodnight". Then run an action.
Can someone explain how do accomplish this?
Try this website:
http://www.cocoadev.com/index.pl?NSSpeechRecognizer
And modify as such:
NSSpeechRecognizer *listen;
NSArray *cmds = [NSArray arrayWithObjects:@"goodnight",nil];
listen = [[NSSpeechRecognizer alloc] init];
[listen setCommands:cmds];
[listen setDelegate:self];
[listen setListensInForegroundOnly:NO];
[listen startListening];
[listen setBlocksOtherRecognizers:YES];
- (void)speechRecognizer:(NSSpeechRecognizer *)sender didRecognizeCommand:(id)aCmd {
if ([(NSString *)aCmd isEqualToString:@"goodnight"]) {
[self performSelector:@selector(goodnightMethod:)];
}
}
Your method for handling good night would be (with accordance to what I have written):
-(void)goodnightMethod:(id)sender {
//Do stuff here...
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With