我想知道在iOS7中使用新API最终是否可以在后台响应通知,就我而言,我有以下观察者:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(storeChanged:)
name:EKEventStoreChangedNotification
object:eventStore];
我可以完美地收到通知,但是我需要运行应用程序,以便调用选择器。我浏览了回复,他们说这是不可能的,但不确定他们是否专门指iOS7。
有什么想法吗?
谢谢!
最佳答案
仅当您的应用程序出现在前台时,EKEventStoreChangedNotification才会触发。但是,如果要在后台调用storeChanged:方法,从而使UI在再次进入前台时已经更新,则需要向应用程序添加Background Fetch功能。
<key>UIBackgroundModes</key>
<array>
<string>fetch</string>
</array>
在您的应用程序委托didFinishLaunchingWithOptions方法中添加以下行
[application setMinimumBackgroundFetchInterval:UIApplicationBackgroundFetchIntervalMinimum];
这可以确保您的应用实际调用您的后台抓取,因为默认间隔从不。此最小键是确保iOS处理何时调用后台提取方法的键。如果您不希望其尽可能频繁地触发,则可以设置自己的最小间隔。
最后,在您的应用程序委托中实现后台获取方法:
- (void)application:(UIApplication *)application performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
{
[self storeChanged:nil];
completionHandler(UIBackgroundFetchResultNewData);
}
您可以在通过调试>模拟后台提取进行调试时在Xcode中进行测试。
关于ios - 在后台接收并响应EKEventStoreChangedNotification?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22365107/