我是 iPhone 开发新手,遇到 EXC_BAD_ACCESS 错误。
在我的 .h 文件中,我声明:
NSString *myString;
在我的 .m 文件中,我有两种方法:
1.我做的时候CLLocationManager接口的(void)locationManager:
myString = [NSString stringWithFormat:@"%lf",loc.longitude];
NSLog(@"%@",myString); // it works
2.A (void)sendPosition 方法:
NSLog(@"%@",myString); // EXC_BAD_ACCESS
你能帮助我吗?