2013-03-04 64 views
0

我想在我的Xcode項目中使用語音到文本庫。我成功地將'Speech-To-Text'庫添加到我的Xcode項目中,並將頭文件導入到我的應用程序中。我使用下面的代碼,但沒有任何事情會發生。我無法獲得任何視圖。如何在我的Xcode項目中使用Speech-To-Text庫?

#import "SineWaveViewController.h" 

SineWaveViewController *sineWav = [[SineWaveViewController alloc]init]; 

[self.navigationController pushViewController:sineWav animated:YES]; 
+0

是否使用故事板在您的項目? – 2013-03-04 14:22:34

+0

@DavidHaynes,不使用Storyboard。 – IKKA 2013-03-04 14:23:22

+0

@DavidHaynes,請幫助我.... – IKKA 2013-03-04 14:29:22

回答

-1
- (id)init { 
    self = [super init]; 
    if (self) { 
     NSArray *cmds = [NSArray arrayWithObjects:@"Sing", @"Jump", @"Roll over", nil]; 
     recog = [[NSSpeechRecognizer alloc] init]; // recog is an ivar 
     [recog setCommands:cmds]; 
     [recog setDelegate:self]; 
    } 
    return self; 
} 
相關問題