• BlackBerry Dynamics
  • Runtime library for iOS applications
  • 12.0.1.79
GDSplashScreenCustomizer.h
Go to the documentation of this file.
1 /*
2  * Copyright 2023 BlackBerry Limited. All rights reserved.
3  *
4  */
5 
6 #import <Foundation/Foundation.h>
7 
8 
19 
20 @optional
21 
39 @property (atomic, strong, readonly) __kindof UIViewController * _Nullable customSplashScreenViewController;
40 
41 @end
42 
43 
71 @interface GDSplashScreenCustomizer : NSObject
72 
79 + (nonnull instancetype)sharedInstance;
80 
92 @property (atomic, weak) id <GDSplashScreenCustomizerDelegate> _Nullable splashScreenCustomizerDelegate;
93 
94 @end
GDSplashScreenCustomizerDelegate-p::customSplashScreenViewController
__kindof UIViewController *_Nullable customSplashScreenViewController
If current property returns a custom view controller, then it will be displayed instead of the defaul...
Definition: GDSplashScreenCustomizer.h:39
GDSplashScreenCustomizer
Display a custom view controller instead of the default BlackBerry Dynamics splash screen.
Definition: GDSplashScreenCustomizer.h:71
GDSplashScreenCustomizer::splashScreenCustomizerDelegate
id< GDSplashScreenCustomizerDelegate > _Nullable splashScreenCustomizerDelegate
An object that acts as a delegate and enables an application to display a custom view controller.
Definition: GDSplashScreenCustomizer.h:92
+[GDSplashScreenCustomizer sharedInstance]
nonnull instancetype sharedInstance()
Class method which returns a unique instance of GDSplashScreenCustomizer singleton class.
GDSplashScreenCustomizerDelegate-p
Delegate for handling GDSplashScreenCustomizer callback when a splash screen is about to be displayed...
Definition: GDSplashScreenCustomizer.h:18