0
私は次のコードを持っている:私の.h-ヘッダー・ファイルでエラー:CLLocationManager headingAvailable
:
#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
@interface Compass : UIViewController <CLLocationManagerDelegate> {
[...]
CLLocationManager *locationManager;
}
[...]
@property(nonatomic, retain) CLLocationManager *locationManager;
@end
そして、私の.m-ファイル:
#import "[FILENAME].h"
[...]
@synthesize locationManager;
- (void)viewDidLoad {
[super viewDidLoad];
self.locationManager = [[[CLLocationManager alloc] init] autorelease];
if(locationManager.headingAvailable == NO) {
[...]
}
[...]
}
をそして私が手次のエラー "locationManager.headingAvailable"のメッセージ: エラー:構造体または共用体ではないもののメンバー 'headingAvailable'に対するリクエスト
私のアプリケーションにCoreLocationフレームワークを追加しました... 誰が私を助けることができますか?