我如何在Swift Playgrounds中获得一个弹出对话框

时间:2019-03-12 17:12:17

标签: swift swift-playground

我想知道如何在Swift 游乐场中打开对话框(必须在游乐场中)我尝试了以下代码(直接从AppleDevs站点获取)

但是,无论我如何尝试,self标记总是都会引发错误。有人可以帮我吗?

import UIKit
let alert = UIAlertController(title: "My Alert", message: "This is an alert.", preferredStyle: .alert) 
alert.addAction(UIAlertAction(title: NSLocalizedString("OK", comment: "Default action"), style: .default, handler: { _ in 
    NSLog("The \"OK\" alert occured.")
}))
self.present(alert, animated: true, completion: nil)

0 个答案:

没有答案