我想在使用 CCLocationManager 时模拟失败。我今天使用的代码是这样的。
首先启动位置更新。
[locationManager startUpdatingLocation];
如果事情失败了
- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error
{
[locationManager stopUpdatingLocation];
[[ActivityIndicator sharedInstance] hide];
}
然而,事情似乎永远不会失败,我想从 locationManager 模拟一个真正的错误。问题的根源是我有几个用户说位置搜索永远不会完成导致阻塞,因为 ActivityIndicator 挡住了路。
有小费吗?