|
AdaptySDK
|
Static Public Member Functions | |
| static void | CreatePaywallView (AdaptyPaywall paywall, AdaptyUICreatePaywallViewParameters optionalParameters, Action< AdaptyUIPaywallView, AdaptyError > completionHandler) |
| Creates a paywall view from an AdaptyPaywall object. | |
| static void | CreateOnboardingView (AdaptyOnboarding onboarding, Action< AdaptyUIOnboardingView, AdaptyError > completionHandler) |
| Creates an onboarding view from an AdaptyOnboarding object. | |
| static void | DismissPaywallView (AdaptyUIPaywallView view, Action< AdaptyError > completionHandler) |
| Dismisses the paywall view. | |
| static void | PresentPaywallView (AdaptyUIPaywallView view, Action< AdaptyError > completionHandler) |
| Call this function if you wish to present the view. | |
| static void | PresentPaywallView (AdaptyUIPaywallView view, AdaptyUIIOSPresentationStyle iosPresentationStyle, Action< AdaptyError > completionHandler) |
| Call this function if you wish to present the view. | |
| static void | PresentOnboardingView (AdaptyUIOnboardingView view, Action< AdaptyError > completionHandler) |
| Presents the onboarding view to the user. | |
| static void | PresentOnboardingView (AdaptyUIOnboardingView view, AdaptyUIIOSPresentationStyle iosPresentationStyle, Action< AdaptyError > completionHandler) |
| Presents the onboarding view to the user with a specified presentation style. | |
| static void | DismissOnboardingView (AdaptyUIOnboardingView view, Action< AdaptyError > completionHandler) |
| Dismisses the onboarding view. | |
| static void | ShowDialog (AdaptyUIPaywallView view, AdaptyUIDialogConfiguration configuration, Action< AdaptyUIDialogActionType, AdaptyError > completionHandler) |
| Presents a dialog on the paywall view. | |
| static void | ShowDialog (AdaptyUIOnboardingView view, AdaptyUIDialogConfiguration configuration, Action< AdaptyUIDialogActionType, AdaptyError > completionHandler) |
| Presents a dialog on the onboarding view. | |
| static void | CreatePaywallView (AdaptyPaywall paywall, Action< AdaptyUIPaywallView, AdaptyError > completionHandler) |
| Creates a paywall view from an AdaptyPaywall object. | |
Static Private Member Functions | |
| static void | DismissPaywallView (AdaptyUIPaywallView view, bool destroy, Action< AdaptyError > completionHandler) |
| static void | DismissOnboardingView (AdaptyUIOnboardingView view, bool destroy, Action< AdaptyError > completionHandler) |
| static void | ShowDialog (string viewId, AdaptyUIDialogConfiguration configuration, Action< AdaptyUIDialogActionType, AdaptyError > completionHandler) |
|
static |
Creates an onboarding view from an AdaptyOnboarding object.
Right after receiving an AdaptyOnboarding, you can create the corresponding AdaptyUIOnboardingView to present it afterwards. Read more at Adapty Documentation
| onboarding | An AdaptyOnboarding object for which you are trying to create a view. |
| completionHandler | The action that will be called with the result. The result contains an AdaptyUIOnboardingView object. |
|
static |
Creates a paywall view from an AdaptyPaywall object.
Right after receiving an AdaptyPaywall, you can create the corresponding AdaptyUIPaywallView to present it afterwards. Read more at Adapty Documentation
| paywall | An AdaptyPaywall object for which you are trying to create a view. |
| completionHandler | The action that will be called with the result. The result contains an AdaptyUIPaywallView object. |
|
static |
Creates a paywall view from an AdaptyPaywall object.
Right after receiving an AdaptyPaywall, you can create the corresponding AdaptyUIPaywallView to present it afterwards. Read more at Adapty Documentation
| paywall | An AdaptyPaywall object for which you are trying to create a view. |
| optionalParameters | An optional AdaptyUICreatePaywallViewParameters object that contains optional parameters like load timeout, custom tags, custom timers, product purchase parameters, and custom assets. |
| completionHandler | The action that will be called with the result. The result contains an AdaptyUIPaywallView object. |
|
static |
Dismisses the onboarding view.
Call this method when you want to dismiss the onboarding view from the screen.
| view | An AdaptyUIOnboardingView object representing the view to dismiss. |
| completionHandler | The action that will be called with the result. |
|
staticprivate |
|
static |
Dismisses the paywall view.
Call this method when you want to dismiss the paywall view from the screen.
| view | An AdaptyUIPaywallView object representing the view to dismiss. |
| completionHandler | The action that will be called with the result. |
|
staticprivate |
|
static |
Presents the onboarding view to the user.
This method presents the onboarding view using the default full-screen presentation style.
| view | An AdaptyUIOnboardingView object representing the view to present. |
| completionHandler | The action that will be called with the result. |
|
static |
Presents the onboarding view to the user with a specified presentation style.
This method presents the onboarding view using the specified iOS presentation style (iOS only).
| view | An AdaptyUIOnboardingView object representing the view to present. |
| iosPresentationStyle | An AdaptyUIIOSPresentationStyle object representing the iOS presentation style (iOS only). |
| completionHandler | The action that will be called with the result. |
|
static |
Call this function if you wish to present the view.
| view | an [AdaptyUIPaywallView] object, for which is representing the view. |
| iosPresentationStyle | an [AdaptyUIIOSPresentationStyle] object, for which is representing the iOS presentation style. |
| completionHandler | The action that will be called with the result. |
|
static |
Call this function if you wish to present the view.
| view | an [AdaptyUIPaywallView] object, for which is representing the view. |
| completionHandler | The action that will be called with the result. |
|
static |
Presents a dialog on the onboarding view.
This method shows a dialog with custom configuration on the onboarding view. The dialog can be used for various purposes like showing terms, privacy policy, or custom messages.
| view | An AdaptyUIOnboardingView object representing the view on which to show the dialog. |
| configuration | An AdaptyUIDialogConfiguration object that contains the dialog configuration. |
| completionHandler | The action that will be called with the result. The result contains the AdaptyUIDialogActionType indicating which action was taken. |
|
static |
Presents a dialog on the paywall view.
This method shows a dialog with custom configuration on the paywall view. The dialog can be used for various purposes like showing terms, privacy policy, or custom messages.
| view | An AdaptyUIPaywallView object representing the view on which to show the dialog. |
| configuration | An AdaptyUIDialogConfiguration object that contains the dialog configuration. |
| completionHandler | The action that will be called with the result. The result contains the AdaptyUIDialogActionType indicating which action was taken. |
|
staticprivate |