我不知道如何使用 calloutAccessoryControlTapped:(UIControl *)control
在我的项目中有两个类(mapViewcontroller 和 listViewcontroller),mapView 上有很多用户可以拉的引脚。如果他拉了一个,我必须保存引脚的数据并将其管理到另一类。 所以我的问题是我必须在以下方法中实现什么来保存图钉的标题和副标题并在其他类上使用它???
enter code here- (void) mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)annView calloutAccessoryControlTapped:(UIControl *)control {
NSLog(@"Pin gedrückt und gespeichert!", [ann查看描述]); }
抱歉我的英语不好,我希望你能帮助我?
问候
in my project are two classes (mapViewcontroller and listViewcontroller) and on the mapView are a lot of pins that the user can pull. If he pulled one i have to save the data of the pins and manage it to the other class.
so my question what i have to implement in the following method to save the title and subtitle of the pin and use it on the other class???
enter code here- (void) mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)annView calloutAccessoryControlTapped:(UIControl *)control {
NSLog(@"Pin gedrückt und gespeichert!", [annView description]);
}
sorry about my bad english, i hope you can help me??
greetings
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,您可以像这样获取标题和副标题:
要将它们放入另一个视图控制器中的 NSMutableDictionary 或类似内容中,请使用有关在另一个视图控制器中共享/访问变量的线程中推荐的方法之一。
Well, you can get the title and subtitle like this:
To put them in a
NSMutableDictionary
or similar in another viewcontroller, use one of the methods recommended in the threads about sharing/accessing variables in another viewcontroller.