デフォルトの場所のみを表示し、指定した特定の場所を表示しないmapViewアプリケーションで私が抱えている問題を誰かが助けてくれますか? 私のコードは次のとおりです。私はXcodeを学んでいるので、おそらく男子生徒の間違いを犯しました:-
.H
#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
@interface RavenMapViewController : UIViewController <MKMapViewDelegate> {
MKMapView *mapView;
}
@property (nonatomic, retain) IBOutlet MKMapView *mapView;
-(void) goLocation;
@end
.M
#import "RavenMapViewController.h"
@implementation RavenMapViewController
@synthesize mapView;
-(void) goLocation
{
MKCoordinateRegion newRegion;
newRegion.center.latitude = 39.278112;
newRegion.center.longitude = -76.622772;
newRegion.span.latitudeDelta = 0.008388;
newRegion.span.longitudeDelta = 0.016243;
[self.mapView setRegion:newRegion animated:YES];
}
- (void)viewDidLoad
{
[self goLocation];
}
- (void)viewDidUnload
{
}
@end