“使用未解析的标识符”

时间:2017-05-31 19:11:23

标签: swift macos

我开始学习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)
}

1 个答案:

答案 0 :(得分:2)

OS X / macOS的申请使用自己的SDK,这与iOS不同。

例如,UIKit上的iOS相当于AppKit上的macOS,虽然它们不可互换 - 意味着使用库,框架,SDK&#39}等适当的平台。