我有一个项目,其中
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];