Mapkit addAnnotation异常:发送到实例的无法识别的选择器

时间:2013-06-17 18:37:44

标签: iphone ios ios6 mapkit mkannotation

我的代码与问题相关:

注释.h文件

#import <Foundation/Foundation.h>
#import <MapKit/MapKit.h>   

@interface CityAnnotation : NSObject <MKAnnotation> {
    NSString *name;
    NSString *country;
    CLLocationCoordinate2D coords;
}

@property (nonatomic,copy) NSString *name;
@property (nonatomic,copy) NSString  *country;
@property (nonatomic,assign) CLLocationCoordinate2D coords;

-(id)initWithTitle:(NSString *)cityname AndCountry:(NSString *)countryname AndCoords: (CLLocationCoordinate2D)coordinate;


@end

注释.m文件

#import "CityAnnotation.h"

@implementation CityAnnotation

@synthesize name,country,coords;

-(id)initWithTitle:(NSString *)cityname AndCountry:(NSString *)countryname AndCoords:(CLLocationCoordinate2D)coordinate
{
    self  = [super init];
    if (self){
    self.name = cityname;
    self.country = countryname;
    self.coords = coordinate;
    }
    return self;

}

@end

我的导入到我的mapview:

#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
#import "tableViewController.h"
#import "City.h"
#import "CityAnnotation.h"

在视图控制器中添加注释。这是[self.mapView addAnnotation:newAnnotation];

上发生错误的地方
- (void)viewDidLoad
{
    [super viewDidLoad];
    CityAnnotation *newAnnotation = [[CityAnnotation alloc]initWithTitle:self.SelectedCity.name AndCountry:self.SelectedCity.country AndCoords:self.SelectedCity.location];
    [self.mapView addAnnotation:newAnnotation];


}

我收到此错误:

-[CityAnnotation coordinate]: unrecognized selector sent to instance 0x85c7d70
2013-06-17 12:15:57.694 JsonTest[1769:c07] *** Terminating app due to uncaught exception     'NSInvalidArgumentException', reason: '-[CityAnnotation coordinate]: unrecognized selector     sent to instance 0x85c7d70'

1 个答案:

答案 0 :(得分:6)

您的CityAnnotation类必须提供名为coordinate的属性/方法。有关详细信息,请参阅MKAnnotation Protocol Reference

您可以通过将coords属性重命名为coordinate来解决问题。