swift项目里面用到了极光推送
当后台推送数据的时候需要进行跳转。
这里就遇到一个问题 如果进行 present
最后进行了查询直接上代码。
let alertController = UIAlertController(title: "消息通知",
message: "您有一条消息请查看", preferredStyle: .alert)
let okAction = UIAlertAction(title: "查看", style: .default, handler: {
action in
print("点击了确定")
})
alertController.addAction(okAction)
UIApplication.shared.keyWindow?.rootViewController?.present(alertController, animated: true, completion: nil)