Я обнаружил утечку памяти при профилировании моего приложения
CustomAnnotation *annotationPoint = [[CustomAnnotation alloc] initWithLatitude:store.latitude longitude:store.longitude];
annotationPoint.titleLabel = store.name;
annotationPoint.subtitleLabel = [NSString stringWithFormat:@"%dm", store.distance];
[annotationPoint setEvent:store];
[self.mapView addAnnotation:annotationPoint];
[annotationPoint release];
Это то, что указано как утечка, а annotationPoint.subtitleLabel = [NSString stringWithFormat:@"%dm", store.distance];
помечено 100%
Что мне сделать, чтобы это исправить?