抱歉,这可能是一个菜鸟问题,但我正在与 CoreLocation 合作,这被难住了。
我正在使用此站点上推荐的单例查找 currentLocation ,当我获得 currentLocation 对象时,它返回 true 以进行非零检查。但是,当我尝试打印它的描述时,它会抛出 EXC_BAD_ACCESS。
//WORKS Current location 8.6602e-290
NSLog(@"Current location %g",currLoc);
//DOESN'T WORK
NSLog(@"Current location %@",[currLoc description]);
//DOESN'T WORK - Is this causing the description to fail as well?
NSLog(@"Current location %g",currLoc.coordinate.latitude);
为什么我可以在第一个上看到某些东西,而在其他上看不到?顺便说一句,这是在 3.1.2 模拟器上运行的谢谢。