MKPointAnnotation *pa = [[MKPointAnnotation alloc] init]; pa.coordinate = mapView.userLocation.coordinate; pa.title = [NSString stringWithFormat:@"place name"];//memory leaks here [mapView addAnnotation:pa]; [pa release];
在使用分析器运行代码时,我发现内存在标题处泄漏,不知道如何解决这个问题。