0

我的代码与问题相关:

注释 .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

我导入到我的地图视图中:

#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'
4

1 回答 1

6

你的CityAnnotation类必须提供一个名为coordinate. 有关详细信息,请参阅MKAnnotation 协议参考

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

于 2013-06-17T18:41:07.567 回答