7

これらは、警告を呼び出している行です: @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
4

1 に答える 1

31

変化する:

@property (非アトミック、保持) NSString *Title;

の中へ:

@property (非アトミック、コピー) NSString *title;

于 2012-05-01T13:17:28.160 に答える