Widget and In-App Messages
Last updated
Was this helpful?
Was this helpful?
// Call this method to disable immediate popup presentation
Netmera.setEnabledPopupPresentation(false)
// Call this method to re-enable immediate popup presentation
Netmera.setEnabledPopupPresentation(true)// Call this method to disable immediate popup presentation
[Netmera setEnabledPopupPresentation:false];
// Call this method to re-enable immediate popup presentation
[Netmera setEnabledPopupPresentation:true];// Ensure this line is at the top of didFinishLaunchingWithOptions
if #available(iOS 10.0, *) {
UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate
} else {
// Fallback for earlier iOS versions
}