これらは、警告を呼び出している行です: @property (非原子、保持) NSString *Title; @property (非アトミック、保持) NSString *Subtitle;
私の警告は次のとおりです: プロパティ 'タイトル' 'コピー' 属性は、'MKAnnotation' から継承されたプロパティと一致しません
何か案は?
前もって感謝します!
#import <Foundation/Foundation.h>
#import <MapKit/MapKit.h>
@interface MapAnnotation : NSObject <MKAnnotation> {
CLLocationCoordinate2D coordinate;
NSString *title;
NSString *subtitle;
int listIndex;
}
@property (nonatomic) CLLocationCoordinate2D coordinate;
@property (nonatomic, retain) NSString *Title;
@property (nonatomic, retain) NSString *Subtitle;
@property (nonatomic) int listIndex;
@end