我想向我的MKAnnotation添加自定義值。我想讓它存儲該位置的唯一ID。我設置了標註有標題和副標題的代碼是這樣的:將自定義屬性添加到MKAnnotation
location.latitude = [dictionary[@"placeLatitude"] doubleValue];
location.longitude = [dictionary[@"placeLongitude"] doubleValue];
newAnnotation = [[MapViewAnnotation alloc] initWithTitle:dictionary[@"placeName"]
andCoordinate:location];
newAnnotation.subtitle = dictionary[@"placeCity"];
我將如何添加自定義屬性,例如「placeId」?這是我有:
newAnnotation.placeId=dictionary[@"placeId"];
任何幫助將是偉大的。謝謝!
嗨巴爾加維,你知道我怎麼會去這樣做? – Brandon 2013-02-13 07:27:12
使用類別類 – 2013-02-13 07:33:29