Change it to:
 @property (nonatomic, copy) NSString *subtitle; @property (nonatomic, copy) NSString *title; 
MKAnnotation Protocol Announces
 @property (nonatomic, readonly, copy) NSString *title; @property (nonatomic, readonly, copy) NSString *subtitle; 
You cannot change the type of property storage, the only change you can / must make is from readonly to readwrite if necessary;
 source share