如何正确保存iOS应用程序状态?

时间:2013-02-20 10:53:45

标签: ios objective-c cocoa-touch

我正在开发一个能够在后台播放音乐的音乐播放器应用程序。只要音乐正在播放,应用程序无论如何都不会被终止,但如果播放停止且应用程序处于后台,它可能会被终止。为了使应用程序更加用户友好,我想保存回放队列,并在系统终止应用程序时说明,因此我在应用程序委托中实现了以下几行:

- (BOOL)application:(UIApplication *)application shouldSaveApplicationState:(NSCoder *)coder
{
    /*
     Archive the current queue controller to be able to continue the playback like the app never has been terminated
     when user is launching it again.
     */
    SMKQueueController *queueController = [[UIApplication sharedApplication] queueController];
    [coder encodeObject:queueController forKey:@"queueController"];
    return YES;
}

- (BOOL)application:(UIApplication *)application shouldRestoreApplicationState:(NSCoder *)coder
{
    /*
     Restore the recently used queue controller to be able to continue the playback like the app never has been
     terminated when use is launching it again.
     */
    SMKQueueController *queueController = [coder decodeObjectForKey:@"queueController"];
    [[UIApplication sharedApplication] setQueueController:queueController];
    return YES;
}

有时候(特别是当我通过双击主页按钮菜单手动杀死它时)它可以正常工作。但有时在终止应用程序时不会调用此方法。

所以我的问题是:我是否误解了这些方法的工作原理或它们的用途?或者有没有更好的地方来实现这样的功能?

1 个答案:

答案 0 :(得分:2)

我参加了WWDC 2012会议,详细描述了应如何做到这一点。如果您是注册的Apple开发人员,则可以从会话中访问视频。这个标题是“在iOS上保存和恢复应用程序状态”。我发现这是一个关于这个主题的非常丰富的会议。