1

如何启动后台语音进程。模拟器是否支持 iOS 中的后台模式。

这是我启动后台进程的代码。但它不起作用。当我按下主页按钮时,录制停止。

-(void)applicationDidEnterBackground:(UIApplication *)application
{
    if ([[UIDevice currentDevice] respondsToSelector:@selector(isMultitaskingSupported)]) { //Check if our iOS version supports multitasking I.E iOS 4
        if ([[UIDevice currentDevice] isMultitaskingSupported]) { //Check if device supports multitasking
            UIApplication *application = [UIApplication sharedApplication]; //Get the shared application instance
            __block UIBackgroundTaskIdentifier background_task; //Create a task object
            background_task = [application beginBackgroundTaskWithExpirationHandler: ^ {
                [application endBackgroundTask: background_task]; //Tell the system that we are done with the tasks
                background_task = UIBackgroundTaskInvalid; //Set the task to be invalid
                //System will be shutting down the app at any point in time now
            }];
            //Background tasks require you to use asyncrous tasks
            dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
                //Perform your tasks that your application requires
                NSLog(@"\n\nRunning in the background!\n\n");
                NSString *pollingTimer2 = [NSTimer scheduledTimerWithTimeInterval:1
                                                                           target:self
                                                                         selector:@selector(recordPauseTapped:)
                                                                         userInfo:nil
                                                                          repeats:YES];
                [application endBackgroundTask: background_task]; //End the task so the system knows that you are done with what you need to perform
                background_task = UIBackgroundTaskInvalid; //Invalidate the background_task
            });
        }
    }

}
4

4 回答 4

1

不,它不支持后台模式。

于 2013-09-02T09:06:20.887 回答
1

要检查设备是否支持多任务处理,请使用以下代码:-

if ([[UIDevice currentDevice] isMultitaskingSupported])

虽然模拟器有一些硬件限制,包括:-

-加速度

-陀螺仪 -摄像头 -
接近传感器
-麦克风输入
要在设备上测试您的应用程序,您必须是 iOS 开发人员计划的成员。要了解有关注册 iOS 开发者计划的更多信息,请参阅 App Distribution Guide 中的“注册 Apple Developer Program 并访问其工具”。您无法在模拟器上测试所有这些功能

于 2013-09-19T07:17:42.607 回答
0

模拟器支持后台模式,但是您的条件(如下)将在模拟器上失败,因此会出现问题。

if ([[UIDevice currentDevice] isMultitaskingSupported])

于 2013-09-02T09:12:11.267 回答
0

是的,模拟器支持后台模式,但您必须在项目设置中启用它。您建议查看下面的链接。

后台下载示例

于 2017-03-04T21:52:24.223 回答