CoreLocation フレームワークを追加し、自分の本のコードを読み直して正しくコピーしたことを確認しましたが、永続的なNo visible @interface for 'CLLocation' declares the selector 'setDesiredAccuracy:'
エラーが発生しています。
#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
@interface WhereamiViewController : UIViewController {
CLLocation *locationManager;
}
@end
#import "WhereamiViewController.h"
@interface WhereamiViewController ()
@end
@implementation WhereamiViewController
-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
locationManager = [[CLLocation alloc] init
[locationManager setDesiredAccuracy:kCLLocationAccuracyBest];
}
return self;
}
@end