New Features
β¨ Introducing RevenueCatUI π± (beta):
RevenueCat's Paywalls allow you to to remotely configure your entire paywall view without any code changes or app updates.
Our paywall templates use native code to deliver smooth, intuitive experiences to your customers when youβre ready to deliver them an Offering; and you can use our Dashboard to pick the right template and configuration to meet your needs.
To use RevenueCat Paywalls on iOS, simply:
- Create a Paywall on the Dashboard for the
Offering
you intend to serve to your customers - Add the
RevenueCatUI
SPM dependency to your project import RevenueCatUI
at the point in the user experience when you want to display a paywall:
import RevenueCatUI
import SwiftUI
struct YourApp: View {
var body: some View {
YourContent()
.presentPaywallIfNeeded(requiredEntitlementIdentifier: "pro") { customerInfo in
print("Purchase completed: \(customerInfo)")
}
}
}
To view new release, visit https://github.com/RevenueCat/purchases-ios/releases/tag/4.26.0-beta.3