我开始学习Swift 3,但我经常遇到错误。
前:
使用未解析的标识符'UIAlertController'
使用未解析的标识符'UIAlert'
等
我的代码
@IBAction func click(_ sender: Any) {
let alert = UIAlertController(title: "Alert", message: "Message", preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "Click", style: UIAlertActionStyle.default, handler: nil))
self.present(alert, animated: true, completion: nil)
}
答案 0 :(得分:2)
OS X
/ macOS
的申请使用自己的SDK
,这与iOS
不同。
例如,UIKit
上的iOS
相当于AppKit
上的macOS
,虽然它们不可互换 - 意味着使用库,框架,SDK&#39}等适当的平台。