UIAlert 在 UIWebView 下不工作
UIAlert not working under UIWebView
如果我的应用程序在后台,我可以收到通知提醒。
但如果我的应用程序在前台并专注于 UIWebView,则警报 window 不会显示内容
有什么想法吗?非常感谢
def application(application, didReceiveRemoteNotification: user_info)
alert_log(user_info[:some_extra_data])
end
def alert_log(message)
alert = UIAlertView.new
alert.message = message
alert.delegate = self
alert.show
end
可以看到bg变灰了,popup也没有消息了。也不能解雇
改用 UIAlertController,UIAlertView 在 iOS8 中已弃用,可能是什么导致了您的问题
如果我的应用程序在后台,我可以收到通知提醒。
但如果我的应用程序在前台并专注于 UIWebView,则警报 window 不会显示内容
有什么想法吗?非常感谢
def application(application, didReceiveRemoteNotification: user_info)
alert_log(user_info[:some_extra_data])
end
def alert_log(message)
alert = UIAlertView.new
alert.message = message
alert.delegate = self
alert.show
end
可以看到bg变灰了,popup也没有消息了。也不能解雇
改用 UIAlertController,UIAlertView 在 iOS8 中已弃用,可能是什么导致了您的问题