You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If my app is in the background, i can receive the notification alert.
But if my app is in the foreground and focus on the UIWebView the alert window won't show
any idea? Thanks so much
def application(application, didReceiveRemoteNotification: user_info)
NSLog("%@", user_info[:aps][:alert])
NSLog("%@", user_info[:some_extra_data])
alert_log(user_info[:some_extra_data])
end
def alert_log(message)
UIAlertView.alert('This is happening, OK?', message) do
self.it_happened!
end
end
The text was updated successfully, but these errors were encountered:
UIAlert not working under UIWebView
If my app is in the background, i can receive the notification alert.
But if my app is in the foreground and focus on the UIWebView the alert window won't show
any idea? Thanks so much
The text was updated successfully, but these errors were encountered: