SITRemoteConfig
Objective-C
@interface SITRemoteConfig : SITResource
Swift
class SITRemoteConfig : SITResource
This class encapsulates all the objects that can be configured remotely using the dashboard. At the moment SITLocationRequest. You can use this class only to check the parameters that is being stored on the dashboard but as a developer you should not use objects of this class directly.
-
NOTE: You should not use this method. Instead you should call
[SITCommunicationManager fetchRemoteConfigWithOptions:success:failure:]
and use the returned value.Declaration
Objective-C
- (nonnull instancetype)initWithLocationRequest: (nonnull SITLocationRequest *)locationRequest;
Swift
init(locationRequest: SITLocationRequest)
-
Retrieve a
SITLocationRequest
instance with the parameters stored on the server to initialize the location engine.Declaration
Objective-C
- (nonnull SITLocationRequest *)locationRequest;
Swift
func locationRequest() -> SITLocationRequest