每日一句 ( 2025115 )  

Problems are not stop signs; they are guidelines.

問題的出現(xiàn)不是讓你止步,而是給你指路。———— Robert Schuller

swift3中提示框UIAlertController的使用

在xcode8 swift3中已經(jīng)已經(jīng)棄用了UIAlertView控件,統(tǒng)一使用UIAlertController代替,以下是UIAlertController的簡單示例。 IBAction func myBtn(_ sender: Any) { let alertController = UIAlertController(title: "Demo", message: "確定還是取消", preferredStyle: .actionSheet) //定義取消按鈕及事件 let cancelAction = UIAlertAction(title: "取消", style: .cancel, handler...