私はiPhone開発にまったく慣れていないので、ボタンをクリックするだけで自分の場所を見つけて地図に表示するアプリを簡単に作成しようとしています。私のコードは正しいと思いますが、main.m ファイルで奇妙なエラーが発生しています。
私は得る
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); <--ERROR
}
}
私のプロジェクトの残りの部分では、ストーリーボードを使用して画面の半分をマップ ビューにし、それを ViewController.h へのアウトレットとして使用し、その下にアクションとして ViewController.h にリンクするボタンを作成します。2つのライブラリもインポートしました。そして、ボタンのアクションの私のコードでは、これは {
_locationManager = [[CLLocation alloc] init];
_locationManager.distanceFilter = kCLDistanceFilterNone;
_locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters;
[_locationManager startUpdatingLocation];
[_mapview setMapType:MKMapTypeStandard];
[_mapview setZoomEnabled:YES];
[_mapview setScrollEnabled:YES];
MKCoordinateRegion region = { {0.0, 0.0}, {0.0, 0.0}};
region.center.latitude = _locationManager.location.coordinate.latitude;
region.center.longitude = _locationManager.location.coordinate.longitude;
region.span.latitudeDelta = .007f;
region.span.longitudeDelta = .007f;
[_mapview setRegion:region animated:YES];
[_mapview setDelegate:sender];
}
助けてくれるすべての人に感謝します!!