Hi,
I'm new in iPhone developement and I have a EXC_BAD_ACCESS error.
In my .h I declare:
NSString *myString;
In my .m I have to methods:
. The (void)locationManager of CLLocationManager interface when I do it:
myString = [NSString stringWithFormat:@"%lf",loc.longitude];
NSLog(@"%@",myString); // it works
. A (void)sendPosition method with:
NSLog(@"%@",myString); // EXC_BAD_ACCESS
Can you help me?
Thanks a lot