MBIMicroblinkApp
@interface MBIMicroblinkApp : NSObject
@property (nonatomic) NSString *language;
/** Bundle with resources used in framework */
@property (nonatomic) NSBundle *resourcesBundle;
/** Custom bundle for overriding resourcesBundle */
@property (nonatomic) NSBundle *customResourcesBundle;
/** Localization file in main bundle used for overrideing framework's localizations */
@property (nonatomic) NSString *customLocalizationFileName;
/** Obtain the shared instance */
+ (instancetype)sharedInstance NS_SWIFT_NAME(shared());
/** Sets the language used in PhotoPaySDK */
- (void)setLanguage:(NSString *)language;
/** Sets the language to default (i.e. language specified in the user's device settings */
- (void)setDefaultLanguage;
/** Pushes the UIApplication status bar style to a internally handled stack */
- (void)pushStatusBarStyle:(UIStatusBarStyle)statusBarStyle;
/** Returns the status bar style to the last saved value */
- (void)popStatusBarStyle;
/** Push the status bar hidden value */
- (void)pushStatusBarHidden:(BOOL)hidden;
/** pops the status bar hidden value */
- (void)popStatusBarHidden;
/** Sets the key that the help was shown to true */
- (void)setHelpShown:(BOOL)value;
/** Returns true if the help was already shown */
- (BOOL)isHelpShown;
/**
 * Returns the default resources bundle. If it doesn't exist, it will be nil.
 */
+ (NSBundle *)getDefaultResourcesBundle;
@endUndocumented
- 
                  
                  Undocumented DeclarationObjective-C @property (nonatomic) NSString *languageSwift var language: String! { get set }
- 
                  
                  Bundle with resources used in framework DeclarationObjective-C @property (nonatomic) NSBundle *resourcesBundle;Swift var resourcesBundle: Bundle! { get set }
- 
                  
                  Custom bundle for overriding resourcesBundle DeclarationObjective-C @property (nonatomic) NSBundle *customResourcesBundle;Swift var customResourcesBundle: Bundle! { get set }
- 
                  
                  Localization file in main bundle used for overrideing framework’s localizations DeclarationObjective-C @property (nonatomic) NSString *customLocalizationFileName;Swift var customLocalizationFileName: String! { get set }
- 
                  
                  Obtain the shared instance DeclarationObjective-C + (instancetype)sharedInstance;Swift class func shared() -> Self!
- 
                  
                  Sets the language to default (i.e. language specified in the user’s device settings DeclarationObjective-C - (void)setDefaultLanguage;Swift func setDefaultLanguage()
- 
                  
                  Pushes the UIApplication status bar style to a internally handled stack DeclarationObjective-C - (void)pushStatusBarStyle:(UIStatusBarStyle)statusBarStyle;Swift func push(_ statusBarStyle: UIStatusBarStyle)
- 
                  
                  Returns the status bar style to the last saved value DeclarationObjective-C - (void)popStatusBarStyle;Swift func popStatusBarStyle()
- 
                  
                  Push the status bar hidden value DeclarationObjective-C - (void)pushStatusBarHidden:(BOOL)hidden;Swift func pushStatusBarHidden(_ hidden: Bool)
- 
                  
                  pops the status bar hidden value DeclarationObjective-C - (void)popStatusBarHidden;Swift func popStatusBarHidden()
- 
                  
                  Sets the key that the help was shown to true DeclarationObjective-C - (void)setHelpShown:(BOOL)value;Swift func setHelpShown(_ value: Bool)
- 
                  
                  Returns true if the help was already shown DeclarationObjective-C - (BOOL)isHelpShown;Swift func isHelpShown() -> Bool
- 
                  
                  Returns the default resources bundle. If it doesn’t exist, it will be nil. DeclarationObjective-C + (NSBundle *)getDefaultResourcesBundle;Swift class func getDefaultResourcesBundle() -> Bundle!
 View on GitHub
            View on GitHub
           MBIMicroblinkApp Class Reference
      MBIMicroblinkApp Class Reference