当用户退出应用程序时将注释存储在 MapKit 中
我希望在退出应用程序时存储我的注释,并在启动应用程序时再次弹出......我怎样才能做到这一点?有什么想法吗?
-(IBAction)storeLocation:(id)sender{
SparaPosition *position=[[SparaPosition alloc] initWithCoordinate:location];
[mapView addAnnotation:position];
savedPosition = location;
请...需要一些帮助!
谢谢!
I want my annotation to be stored when I quit the application and pop up again when I launch the application.... How can I make this possible? Any ideas?
-(IBAction)storeLocation:(id)sender{
SparaPosition *position=[[SparaPosition alloc] initWithCoordinate:location];
[mapView addAnnotation:position];
savedPosition = location;
Please... need some help!
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只想保存一个注释的坐标,最简单的方法是使用 NSUserDefaults。
保存:
加载(例如在 viewDidLoad 中):
If you want to save just one annotation's coordinates, simplest way is to use NSUserDefaults.
To save:
To load (in viewDidLoad for example):