Error: CLLocationManager headingAvailable
- by Bubu4711
I have the following code:
In my .h-Header-File:
#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
@interface Compass : UIViewController <CLLocationManagerDelegate> {
[...]
CLLocationManager *locationManager;
}
[...]
@property(nonatomic, retain) CLLocationManager *locationManager;
@end
And my .m-File:
#import "[FILENAME].h"
[...]
@synthesize locationManager;
- (void)viewDidLoad {
[super viewDidLoad];
self.locationManager = [[[CLLocationManager alloc] init] autorelease];
if(locationManager.headingAvailable == NO) {
[...]
}
[...]
}
And I get the following error Message for "locationManager.headingAvailable":
error:request for member 'headingAvailable' in something not a structure or union
I've added the CoreLocation framework to my app...
Who can help me?