for (int i = 0; i < self.businessArray.count; i++) {
Business *business = [self.businessArray objectAtIndex:i];
MapAnnotation *mapAnnotation = [[MapAnnotation alloc] init];
NSLog(@"%f %f", business.coordinate.latitude, business.coordinate.longitude);
mapAnnotation.title = business.name;
mapAnnotation.subtitle = business.address1;
mapAnnotation.coordinate = business.coordinate;
[bMapView addAnnotation:mapAnnotation];
NSLog(@"ti %@", mapAnnotation.title);
NSLog(@"sub %@", mapAnnotation.subtitle);
NSLog(@"coo %f %f", mapAnnotation.coordinate.latitude, mapAnnotation.coordinate.longitude);
}
- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
{
MKPinAnnotationView *pinView;
if (annotation != mapView.userLocation) {
static NSString *defauleID = @"myLocation";
// pinView = (MKPinAnnotationView*)[mapView dequeueReusableAnnotationViewWithIdentifier:defauleID];
if (pinView == nil) {
pinView = [[MKPinAnnotationView alloc] initWithAnnotation: annotation reuseIdentifier:defauleID];
}
pinView.pinColor = MKPinAnnotationColorGreen;
pinView.canShowCallout = YES;
pinView.animatesDrop = YES;
UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
[rightButton setTitle:annotation.title forState:UIControlStateNormal];
[rightButton addTarget:self
action:@selector(showDetails:) forControlEvents:UIControlEventTouchUpInside];
pinView.rightCalloutAccessoryView = rightButton;
}
return pinView;
}
错误:类 MapAnnotation 的实例 0x1cdd97b0 已被释放,而键值观察者仍向其注册。观察信息被泄露,甚至可能被错误地附加到其他对象上。在 NSKVODeallocateBreak 上设置断点以在调试器中停止。这是当前的观察信息:(上下文:0x0,属性:0x1cd97a30>