Warning
This feature is available in the Full MapKit SDK version
MMKAdjustedClock
@interface MMKAdjustedClock : NSObject |
Undocumented
Summary
Instance methods
- (nonnull NSDate *)now; |
- (void)resume; |
- (void)pause; |
Properties
@property (nonatomic, readonly, getter=isValid) BOOL valid; |
Instance methods
now
- (nonnull NSDate *)now; |
This method returns the time that has been synchronized with Mappable servers. Use it if you don't trust the time on the local device because the user could have set it incorrectly. If time synchronization has failed or not yet finished, the returned value equals the local device's time.
Returns |
POSIX time. For more information, see |
resume
- (void)resume; |
Notifies AdjustedClock when the application resumes the foreground state.
pause
- (void)pause; |
Notifies AdjustedClock when the application pauses and goes to the background.
Properties
valid
@property (nonatomic, readonly, getter=isValid) BOOL valid; |
Tells if this object is valid or no. Any method called on an invalid object will throw an exception. The object becomes invalid only on UI thread, and only when its implementation depends on objects already destroyed by now. Please refer to general docs about the interface for details on its invalidation.