【发布时间】:2013-06-25 18:50:15
【问题描述】:
我正在使用 google map SDK 在我的 iphone 应用程序中显示地点。 在录制注释时,我正在导航到地点的详细信息页面。为此,我必须传递该地点的值
目前我正在使用
-(void)mapView:(GMSMapView *)mapView didTapInfoWindowOfMarker:(id<GMSMarker>)marker {
DetailViewController *Detail = [[DetailViewController alloc]initWithNibName:@"DetailViewController" bundle:nil];
Detail.address=marker.snippet;
Detail.name = marker.title;
[self.navigationController pushViewController:Detail animated:YES];
}
但我想传递更多的值,怎么做?
【问题讨论】:
-
你要传递哪些值?
标签: iphone ios objective-c google-maps map