如果我的应用程序在后台,我可以收到通知提醒。
但如果我的应用程序位于前台并专注于UIWebView,则警报窗口不会显示内容
任何想法?非常感谢
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
答案 0 :(得分:0)
使用UIAlertController代替,UIAlertView在iOS8中已被弃用,可能是导致您出现问题的原因