SITNavigationManager
Objective-C
@interface SITNavigationManager : NSObject <SITNavigationInterface>
Swift
class SITNavigationManager : NSObject, SITNavigationInterface
Default implementation of SITNavigationInterface
-
Call this method to receive a reference to an initialized object of this class
Note
You should always use this method to obtain the manager object and should not try to create instances directly.Declaration
Objective-C
+ (instancetype _Nonnull)sharedManager;
Swift
class func shared() -> Self
Return Value
initialized and ready to use instance of this class
-
Delegate for progress callbacks
Declaration
Objective-C
@property (nonatomic, strong) id<SITNavigationDelegate> _Nullable delegate;
Swift
var delegate: SITNavigationDelegate? { get set }