我的应用在进入背景时停止说话,在进入前台时继续说话。当应用程序再次进入前台时,我需要停止说话。
如果代码是全局的,则实现此委托方法
- (void)applicationWillEnterForeground:(UIApplication *)application
{
/// stop speech
}
或在视图中收听它控制器,如果不是
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(appWillEnterForeground:) name:UIApplicationWillEnterForegroundNotification object:nil];
//
-(void)applicationWillEnterForeground:(NSNotification *)paramNotification
{
}