我需要在两个不同的 View 中使用 GPS。我在我的第一个 View Controller 中设置了它,但试图弄清楚如何在第二个 View 中执行它。
有什么好的方法来做到这一点?为每个 View 使用不同的 CCLocationManager?在第一个 View Controller 中设置通知以告诉第二个 View Controller 从第一个 View Controller 获取更新的 GPS?
Best Answer-推荐答案 strong>
我建议您设置位置管理器的一个实例以在一个位置进行更新(例如应用程序委托(delegate)),然后在该位置设置键值观察以在更改时向您发送通知。以下是一些关于 KVO 的 Apple 文档:
https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/KeyValueObserving/KeyValueObserving.html
关于objective-c - 多个 View Controller 中的 CLLocation,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/9384652/
|