MKMapSnapshotter 的 startWithCompletionHandler 方法上的完成处理程序是否有任何理由不会被回调?(甚至没有错误!!)
我没有做任何花哨的事情,只是抓取快照并显示它,全部在前台,没有后台处理。
不同寻常的是它看起来完全随机,这意味着有时它工作得很好,有时它永远不会。
这是我的代码:
MKMapSnapshotOptions *options = [[MKMapSnapshotOptions alloc] init];
options.size = somePredeterminedSize;
options.scale = [[UIScreen mainScreen] scale];
options.mapType = MKMapTypeStandard;
options.region = MKCoordinateRegionMakeWithDistance(mycoordinate, 1000, 1000);
MKMapSnapshotter *snapshotter = [[MKMapSnapshotter alloc] initWithOptions:options];
[snapshotter startWithCompletionHandler:^(MKMapSnapshot *snapshot, NSError *error) {
if (error) {
NSLog(@"[Error] %@", error);
return;
}
MKAnnotationView *pin = [[MKPinAnnotationView alloc] initWithAnnotation:nil reuseIdentifier:nil];
pin.image = [UIImage imageNamed:@"map-pin"];
UIImage *image = snapshot.image;
UIGraphicsBeginImageContextWithOptions(image.size, YES, image.scale);
[image drawAtPoint:CGPointMake(0.0f, 0.0f)];
CGRect rect = CGRectMake(0.0f, 0.0f, image.size.width, image.size.height);
CGPoint point = [snapshot pointForCoordinate:self.bureau.coordinate];
if (CGRectContainsPoint(rect, point)) {
point.x = point.x + pin.centerOffset.x - (pin.bounds.size.width / 2.0f);
point.y = point.y + pin.centerOffset.y - (pin.bounds.size.height / 2.0f);
[pin.image drawAtPoint:point];
}
UIImage *compositeImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
}];
我已经在几台设备上同时测试了这一点,每台设备都运行不同的 iOS 版本: iPhone 5S 运行 iOS 8.4 iPhone 6 运行 iOS 9.2 iPhone 6+ 运行 iOS 8.2
所有 3 台设备都连接到同一个 WIFI。iPhone 6+ 几乎从不失败,而 iPhone 6 几乎总是这样。
有什么建议么?