0

我有一个项目,其中
1.Table
2.Map
3.Button
在表格栏中。

用户在表格中添加经度和纬度,无论他打印什么,我都需要查看 pin。

如果您用@property 解释如何做到这一点,那就太好了。

对不起我的第一个问题。

我已经完成了我拥有 Mutabletable 的一切,在地图上有别针,但它是由我在 Xcode 中的坐标完成的

  MKCoordinateRegion region1 = { {0.0, 0.0} , {0.0, 0.0}};
  region1.center.latitude = 50.481705;
  region1.center.longitude = 30.532894;
  region1.span.longitudeDelta = 0.01f;
  region1.span.latitudeDelta = 0.01f;
  [map setRegion:region1 animated:YES];
4

2 回答 2

0

您可以搜索有关 MKMapView 的文档:

(void)addAnnotation:(id <MKAnnotation>)annotation;
(void)addAnnotations:(NSArray *)annotations;

@protocol MKMapViewDelegate
(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation;
于 2012-09-05T07:24:57.667 回答
0

初始化 mapViewController 后,您可以使用点符号访问它的属性。您需要在 mapViewController 中有一个 CLLocation 属性,然后您可以在第一个视图控制器中访问它,例如:

myMapViewController = [[MyMapViewController alloc] init];
myMapViewController.myCoordinate.latitude = ...
myMapViewController.myCoordinate.longitude = ...

然后你的财产它你的 mapViewController 将有你之前给它的值。

于 2012-09-05T09:02:13.910 回答