Navmii SDK  2.2.0
Write yourself a navigation system in iOS
Instance Methods | List of all members
<NMSdkStateChangeListener> Protocol Reference

Inherits <NSObject>.

Instance Methods

(void) - onSdkStarted
 
(void) - onSdkIsFailedToStart:
 
(void) - onSdkPaused
 
(void) - onSdkResumed
 
(void) - onSdkDestroyed
 

Method Documentation

◆ onSdkDestroyed()

- (void) onSdkDestroyed
optional

Tells the listener that SDK is destroyed. Behaviour of destroyed SDK is undefined. @discussion When this method is called SDK state is set to NMSdkStateDestroyed.

◆ onSdkIsFailedToStart:()

- (void) onSdkIsFailedToStart: (NSError *)  error
optional

Tells the listener that something went wrong and SDK is not initialized properly. @discussion When this method is called SDK state is set to NMSdkStateUninitialized.

Parameters
errorContains description of the problem.

◆ onSdkPaused()

- (void) onSdkPaused
optional

Tells the listener that SDK is paused and map is not being rendered. @discussion When this method is called SDK state is set to NMSdkStatePaused.

◆ onSdkResumed()

- (void) onSdkResumed
optional

Tells the listener that SDK is resumed and ready to use. @discussion When this method is called SDK state is set to NMSdkStateActive.

◆ onSdkStarted()

- (void) onSdkStarted
optional

Tells the listener that SDK is initialized and ready to use. @discussion When this method is called SDK state is set to NMSdkStateActive.