7

ユーザーの現在の場所を見つける必要があるアプリを実行しています.CLLocationmanagerを使用してiOS 5シミュレーターでユーザーの現在の場所を取得できますか?

4

3 に答える 3

7

xcode - スキームの編集 - you.app の実行 - オプション

[ロケーション シミュレーションを許可する] にチェックを入れ、[デフォルトのロケーション] を選択します。

Add GPX File to Project

このようなフォーマット

于 2012-04-28T05:59:28.820 に答える
-4
- (void)viewDidLoad{
    [super viewDidLoad];
    self.title = @"MapView";
    self.navigationController.navigationBarHidden = NO;
    locationManager = [[CLLocationManager alloc] init];
    locationManager.delegate = self;
    locationManager.distanceFilter = kCLDistanceFilterNone; // whenever we move
    locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters; // 100 m
    [locationManager startUpdatingLocation];
}

- (void) loadPin {
    iCodeBlogAnnotation *appleStore1;
    CLLocationCoordinate2D workingCoordinate;
    workingCoordinate.latitude = [latitude doubleValue];
    workingCoordinate.longitude = [longitude doubleValue];
    appleStore1 = [[iCodeBlogAnnotation alloc] initWithCoordinate:workingCoordinate];
    [appleStore1 setTitle:[NSString stringWithFormat:@"Default Point"]];

    //[appleStore1 setSubtitle:[NSString stringWithFormat:@"Distance %.2f Miles",miles]];
    [appleStore1 setAnnotationType:iCodeBlogAnnotationTypeEDU];
    [mapView addAnnotation:appleStore1];
    [(MKMapView*)self.mapView selectAnnotation:appleStore1 animated:NO];
    MKCoordinateRegion region;
    region.center.latitude = [latitude doubleValue];
    region.center.longitude = [longitude doubleValue];
    region.span.latitudeDelta = .5;
    region.span.longitudeDelta = .5;
    [mapView setRegion:region animated:YES];
}

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
    latitude = [[NSString alloc] initWithFormat:@"%f", newLocation.coordinate.latitude];
    longitude = [[NSString alloc] initWithFormat:@"%f", newLocation.coordinate.longitude];
    [locationManager stopUpdatingLocation];
    if (latitude > 0) {
        [self loadPin];
    }
}
于 2012-04-28T10:17:53.643 に答える