I'm trying to get heading information using ios 4.3 on an iphone 4. I have my delegate set correctly but the following delegate method is not being called. Any ideas on what I'm doing wrong?
(void)locationManager:(CLLocationManager *)manager didUpdateHeading: (CLHeading )newHeading)newHeading {
[manager setDelegate:self];
NSLog(@" I'm updating the location information now");
[manager startUpdatingHeading];
NSLog(@" heading info %@",newHeading); }