当从WatchKit调用时,mkmapsnapshotcompletionhandler从未在父应用中调用



我有这个奇怪的问题:我正常使用openParentApplication:reply:调用父应用程序。

它很好地做它的工作从互联网上获得一些数据使用异步NSURLRequests,但当我想获得一个地图图像使用MKMapSnapshotter(仍在父应用程序)它的完成块从未调用。

MKMapSnapshotter *snapshotter = [[MKMapSnapshotter alloc] initWithOptions:options];
[snapshotter startWithCompletionHandler:^(MKMapSnapshot *snapshot, NSError *error) {
    NSLog(@"completion handler is called"); //this never called
};

我试着打电话给:snapshotter startWithQueue:dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0)dispatch_get_main_queue()等,但似乎没有工作。

如果我直接从WKInterfaceController或从父应用程序调用相同的代码,它工作得很好。

我不认为你可以用你想要的方式调用/使用MKMapSnapshooter。当你使用openParentApplication发出请求时,它是在后台模式下打开你的父应用程序,而MKMapSnapshooter需要前台模式来传递最终的图像。

根据Apple docs:

快照只在它完成时才将最终图像传递给应用程序在前台运行。快照必须呈现最终图像当你的应用在前台时。如果你开始生成a当应用程序在后台时,或者当你的应用程序移动到当快照正在进行时,此行为会延迟在你的应用程序返回前台之前,快照的交付。

相关内容

  • 没有找到相关文章