UIAlert不能在UIWebView下工作

时间:2015-10-06 10:21:50

标签: ios rubymotion

如果我的应用程序在后台,我可以收到通知提醒。

但如果我的应用程序位于前台并专注于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 

正如您所看到的,bg变为灰色,弹出窗口没有消息。它也不能被解雇

enter image description here

1 个答案:

答案 0 :(得分:0)

使用UIAlertController代替,UIAlertView在iOS8中已被弃用,可能是导致您出现问题的原因