我想知道如何使这段代码工作:当我点击一个单元格时,我调用DetailViewController,这是一张坐标为旧金山的地图。但我的地图只显示“世界”地图,不要去我设置的地区,你知道我怎么能用“我的”坐标开始吗?
这是我的代码:
#import "DetailViewController.h"
@implementation DetailViewController
@synthesize mapView;
- (void) gotoLocation {
NSLog(@"allo");
//start off in San Francisco
MKCoordinateRegion region;
region.center.latitude = 37.786996;
region.center.longitude = -122.440100;
region.span.latitudeDelta = 0.112872;
region.span.longitudeDelta = 0.109863;
[self.mapView setRegion:region animated:YES];
}
- (void)viewDidLoad {
[super viewDidLoad];
[self gotoLocation];
}
- (void)dealloc {
[super dealloc];
[mapView release];
}
- (void)viewDidUnload {
[super viewDidUnload];
self.mapView = nil;
}
@end
由于
保
答案 0 :(得分:7)
- (void)viewDidLoad{
[super viewDidLoad];
// define span for map: how much area will be shown
MKCoordinateSpan span;
span.latitudeDelta = 0.002;
span.longitudeDelta = 0.002;
// define starting point for map
CLLocationCoordinate2D start;
start.latitude = 37.786996;
start.longitude = 0.109863;
// create region, consisting of span and location
MKCoordinateRegion region;
region.span = span;
region.center = start;
// move the map to our location
[self.mapView setRegion:region animated:YES];
}
答案 1 :(得分:2)
由于您看到了世界地图,因此地图视图的框架必须正常,并且设置该区域的代码应该有效。
setRegion
调用不起作用的最可能原因是mapView
IBOutlet未连接到xib中的地图视图控件。在IB中,右键单击文件所有者并将mapView
插座连接到地图视图控件。
您可能还想将地图视图控件的delegate
插座连接到文件的所有者,以便调用您实现的任何委托方法(稍后)。
单独(与您的问题无关),在dealloc
中,[super dealloc]
应该最后调用。有关说明,请参阅this answer。
答案 2 :(得分:1)
在设置区域之前需要设置框架,通过使用IB来实例化mapview的外观,所以你应该将setRegion消息放入viewDidAppear:并将其放入DetailViewController中。 / p>
-(void)viewDidAppear {
MKCoordinateRegion region;
region.center.latitude = 37.786996;
region.center.longitude = -122.440100;
region.span.latitudeDelta = 0.112872;
region.span.longitudeDelta = 0.109863;
[self.mapView setRegion:region animated:YES];
}
或
你可以在设置区域之前做这样的事情(可能不起作用)
self.mapView.frame = self.view.bounds