STSApplication

@interface STSApplication : NSObject

StraaS.io application class, the base interface of your StraaS.io application.

  • Configure your StraaS.io application. You need to complete the configuration process and get a successfull response in order to using StraaS-iOS-SDK.

    Declaration

    Objective-C

    + (void)configureApplication:(void (^)(BOOL, NSError *))completion;

    Swift

    class func configureApplication(_ completion: ((Bool, Error?) -> Void)!)

    Parameters

    completion

    If success is YES, error will be nil. And StraaS-iOS-SDK components is ready to use. Otherwise, an NSError object is passed into completion handler.