我正在尝试将地图添加到我的ViewController,但它在init方法上崩溃了。这是我的代码:
在TAMap.h中:
#import <Foundation/Foundation.h>
#import <MapKit/MapKit.h>
@interface TAMap : UIViewController<MKMapViewDelegate>
@property (nonatomic, strong) MKMapView *mapView;
@end
在TAMap.m中:
@implementation TAMap
@synthesize mapView = _mapView;
- (void)viewDidLoad {
[super viewDidLoad];
// Crashes here:
self.mapView = [[MKMapView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
我正在使用ARC,我的代码似乎完全是通用的。我环顾四周,到处都是添加地图视图的相同代码。然而它与EXE_BAD_ACCESS崩溃了。我错过了什么?
答案 0 :(得分:0)
我的工作代码:
- (void)viewDidLoad
{
[super viewDidLoad];
MKMapView *mapView = [[MKMapView alloc] initWithFrame:self.view.frame];
[self.view addSubview:mapView];
}