SFMCSdk
@objc(SFMCSdk)
public final class SFMCSdk : NSObject
-
Declaration
Swift
@objc public static func initializeSdk(_ configuration: Config) -
Declaration
Swift
@objc public static func track(event: Event) -
Declaration
Swift
@objc public static func state() -> String
-
Declaration
Swift
@objc public static func setLogger(logLevel: LogLevel, logOutputter: LogOutputter? = LogOutputter()) -
Declaration
Swift
public static func setLogger(logLevel: LogLevel, logOutputter: LogOutputter? = LogOutputter(), filters: [LoggerCategory] = [LoggerCategory]()) -
Declaration
Swift
@objc public static func getLogLevel() -> LogLevel -
Declaration
Swift
@objc public static func clearLoggerFilters()
-
Declaration
Swift
@objc public static func setAutoMergePolicy(onCompletion: @escaping AutoMergePolicyCallback) -
Declaration
Swift
@objc public static func setManualMergePolicy(withHandler handler: @escaping ManualMergePolicyCallback) -
Declaration
Swift
@objc public static func getDataMergePolicy() -> DataMergePolicy -
Declaration
Swift
@objc public static func resetDataPolicy(appId: String) -> Bool -
Declaration
Swift
@objc public static func getAutoDataPolicyCallBack() -> AutoMergePolicyCallback? -
Declaration
Swift
@objc public static func getManualDataPolicyCallBack() -> ManualMergePolicyCallback?
-
Provides a way to set/override the accessibility attribute for Keychain
Declaration
Swift
@available(*, deprecated, message: "This method is obsolete and has been deprecated") @objc public static func setKeychainAccessibleAttribute(accessibleAttribute: CFTypeRef?)Parameters
accessibleAttributeCFTypeRef which has any one of below values kSecAttrAccessibleWhenUnlocked kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly kSecAttrAccessibleWhenUnlockedThisDeviceOnly kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly kSecAttrAccessibleAlwaysThisDeviceOnly
-
Returns accessible attribute set by the SDK or overridden value by the consuming application
Declaration
Swift
@available(*, deprecated, message: "This method is obsolete and has been deprecated") @objc public static func keychainAccessibleAttribute() -> CFTypeRef? -
Sets whether or not keychain access errors cause a fatal exception.
Declaration
Swift
@available(*, deprecated, message: "This method has no effect, SFMCSdk does not throw fatal exceptions anymore") @objc public static func setKeychainAccessErrorsAreFatal(errorsAreFatal: Bool) -
Declaration
Swift
@available(*, deprecated, message: "This method has no effect, SFMCSdk does not throw fatal exceptions anymore") @objc public static func keychainAccessErrorsAreFatal() -> Bool
-
Provides a way to set/override the Protection level for File system
Declaration
Swift
@objc public static func setFileProtectionType(fileProtectionType: FileProtectionType?)Parameters
fileProtectionTypeFileProtectionType which has any one of the below values NSFileProtectionComplete NSFileProtectionCompleteUnlessOpen NSFileProtectionCompleteUntilFirstUserAuthentication NSFileProtectionNone
-
Returns File protection type set by the SDK or overridden value by the consuming application
Declaration
Swift
@objc public static func fileProtectionType() -> FileProtectionType? -
Requests the Mobile Push SDK when it’s operational and safe to use. The provided callback will be invoked with the Mobile Push SDK when it’s ready. All push SDK-related API calls should be made within this function.
Declaration
Swift
@objc public static func requestPushSdk(_ callback: @escaping (_ mp: PushInterface) -> Void)Parameters
callbackA callback that will receive the Mobile Push SDK when it’s operational/ready.
SFMCSdk Class Reference