Внутри CLLocation Class Reference
в разделе свойств это то, что написано для coordinate
:
coordinate
The geographical coordinate information. (read-only)
@property(readonly, NS_NONATOMIC_IPHONEONLY) CLLocationCoordinate2D coordinate
Discussion
When running in the simulator, Core Location assigns a fixed set of coordinate values to this property. You must run your application on an iOS-based device to get real location values.
Special Considerations
In iOS, this property is declared as nonatomic. In Mac OS X, it is declared as atomic.
Мне просто любопытно, что это значит: @property(readonly, NS_NONATOMIC_IPHONEONLY)
. В частности, часть NS_NONATOMIC_IPHONEONLY
. Мне кажется, что я могу получить доступ к этому с iPod touch.
Я что-то упустил? Безопасно ли использовать это с iPod touch?