尝试学习MKMapView的方法,但我已经学过几个教程,我似乎无法将其放大到我定义的位置,而只是加载到以大西洋为中心的整个地图视图。我猜测iOS6中的某些内容已发生变化,这意味着我使用的教程不再有效? (教程是iOS3-iOS5)。
我在Interface Builder中创建了一个ViewController,给定了MapViewController的自定义类。然后我拖动MKMapView并使用Assistant Editor将其放入MapViewController.h
MapViewController.h
#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
@interface MapViewController : UIViewController
@property (weak, nonatomic) IBOutlet MKMapView *myMapView;
@end
MapViewController.m
#import "MapViewController.h"
#define CLS_LATITUDE 54.85477
#define CLS_LONGITUDE -1.57371
#define SPAN 0.10f;
@interface MapViewController ()
@end
@implementation MapViewController
@synthesize myMapView;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
MKCoordinateRegion myRegion;
CLLocationCoordinate2D center;
center.latitude = CLS_LATITUDE;
center.longitude = CLS_LONGITUDE;
MKCoordinateSpan mySpan;
mySpan.latitudeDelta = SPAN;
mySpan.longitudeDelta = SPAN;
myRegion.center = center;
myRegion.span = mySpan;
[myMapView setRegion:myRegion animated:YES];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
答案 0 :(得分:1)
该地区的代码看起来是正确的。您确定已在界面构建器中链接了myMapView插座吗?
如果您点击并按住&#34;文件所有者&#34;左边的对象,然后按住 Ctrl 并从文件所有者拖动到界面中的地图视图,当你松开鼠标按钮时,你应该可以选择设置出口到myMapView
。然后,您可以在Connections检查器中看到右侧所示的链接。
修改强>
好的,所以看起来,正如您使用的是Autolayout,地图视图的框架在调用viewDidLoad
时尚未设置。我建议你把它移到- (void)viewWillLayoutSubviews
。例如:
- (void)viewWillLayoutSubviews {
[super viewWillLayoutSubviews];
[self setLocation];
}
-(void)setLocation {
// Set region etc...
}