UIAlert Action xcode 8

时间:2017-05-04 08:24:01

标签: url swift3 xcode8 uialertview

我正在努力制作一个UIAlertaction,它可以让我的游戏用户访问我的网站,看到高分和其他高分。找不到教程向我展示如何为URL编码。因此,该操作可以用来将我的用户带到网站,而不是用于解除警报的警报操作。我用了一个教程来实现这一目标。我是xcode8的新手,我正在学习。对不起,如果这是一个愚蠢的问题。我正竭尽全力。在此先感谢您的所有帮助。任何帮助都会很棒。源代码将是巨大的。我也在使用xcode 8.非常感谢

func handleReceivedDataWithNotification(_ notification: Notification) {
    let gameset = notification.gameset!
    print(gameset)
}

func browserViewControllerDidFinish(_ browserViewController: MCBrowserViewController) {
    appDelegate.MPCHandler.browser.dismiss(animated: true, completion: nil)
}

1 个答案:

答案 0 :(得分:1)

您需要做的就是声明要打开的网址,并将该坏男孩送到正确的API。

func createAlert (title: String, message:String)
{
    let alert = UIAlertController(title: title, message: message, preferredStyle: UIAlertControllerStyle.alert)
    alert.addAction(UIAlertAction(title: output.text, style: UIAlertActionStyle.default, handler: { (action) in
      // Declare a URL what you would like to open
      let url = URL(string: "http://test.io")!
      // Open website in Safari Mobile
      UIApplication.shared.open(url, options: [:], completionHandler: nil)
    }))
    self.present(alert,animated: true, completion:nil)
}