我MKMapView
在地图上有一个和一些标记。当用户点击标记时,MKAnnotationView
会出现 atitle
和 abutton
类型UIButtonTypeDetailDisclosure
。
当用户点击按钮时,它应该转到另一个viewController
. 问题是当新的viewController
出现时,它是空白的,并且没有我在故事板中给出的格式。
这是代码calloutAccessoryControlTapped
:
- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control {
MnhmeioViewController * destViewController = [[MnhmeioViewController alloc] init];
Annotation *which=view.annotation;
NSString *whichString=which.title;
Group *tmpGroup;
for(int i=0; i<allGroups.count; i++) {
Group *checkGroup=[allGroups objectAtIndex:i];
if ([checkGroup.title isEqualToString:whichString]) {
tmpGroup=checkGroup;
break;
}
}
NSString *mnhmeioName=tmpGroup.title;
destViewController.titleNavBar = mnhmeioName;
destViewController.selectedArthro = tmpGroup;
[self.navigationController pushViewController:destViewController animated:YES];
}