Visual constructor
Test out the best Paywalls and Welcome pages of your iOS Apps with Appflow.ai Visual Constructor
Paywall
Appflow.shared.loadPaywallToPurachase {[weak self] result, msg in
guard let `self` = self else { return }
if result == false {
//if false , Developers can jump to the native payment page
}
}Welcome Page
// loading WelcomPage
func loadLaunchScreenView() {
// customized launch screen
if let window = self.window {
window.backgroundColor = .white
let welcomPageView = AppflowWelcomePage(frame: window.bounds)
welcomPageView.waitingTime = 6
self.window?.makeKeyAndVisible()
self.window?.addSubview(welcomPageView)
self.window?.bringSubviewToFront(welcomPageView)
}
}Last updated
Was this helpful?