目錄:[Swift]Xcode實際操做html
本文將演示警告窗口的使用方法。swift
警告窗口不只能夠給用戶展示提示信息,還能夠提供若干選項供用戶選擇。ide
在項目導航區,打開視圖控制器的代碼文件【ViewController.swift】post
1 import UIKit 2 3 class ViewController: UIViewController { 4 5 override func viewDidLoad() { 6 super.viewDidLoad() 7 // Do any additional setup after loading the view, typically from a nib. 8 //首先建立一個按鈕,當點擊按鈕時,彈出警告窗口。 9 let bt = UIButton(type: UIButton.ButtonType.system) 10 //設置按鈕的位置爲(20,120),尺寸爲(280,44) 11 bt.frame = CGRect(x: 20, y: 120, width: 280, height: 44) 12 //接着設置按鈕在正常狀態下的標題文字 13 bt.setTitle("Question", for: .normal) 14 //爲按鈕綁定點擊事件 15 bt.addTarget(self, action: #selector(ViewController.showAlert), for: .touchUpInside) 16 //設置按鈕的背景顏色爲淺灰色 17 bt.backgroundColor = UIColor.lightGray 18 //將按鈕添加到當前視圖控制器的根視圖 19 self.view.addSubview(bt) 20 } 21 22 //建立一個方法,用來響應按鈕的點擊事件 23 @objc func showAlert() 24 { 25 //初始化一個警告窗口並設置窗口的標題文字和提示信息 26 let alert = UIAlertController(title: "Information", message: "Are you a student?", preferredStyle: UIAlertController.Style.alert) 27 28 //建立一個按鈕,做爲提示窗口中的提示按鈕。 29 //當用戶點擊此按鈕時,在控制檯打印輸出日誌 30 let yes = UIAlertAction(title: "Yes", style: UIAlertAction.Style.default, handler: {(alerts: UIAlertAction) -> Void in print("Yes, I'm a student.")}) 31 32 //再建立一個按鈕,做爲提示窗口中的提示按鈕。 33 //當用戶點擊此按鈕時,在控制檯打印輸出日誌 34 let no = UIAlertAction(title: "No", style: UIAlertAction.Style.default, handler: {(alerts: UIAlertAction) -> Void in print("No, I'm not a student.")}) 35 36 //將兩個按鈕,分別添加到提示窗口 37 alert.addAction(yes) 38 alert.addAction(no) 39 40 //在當前視圖控制器中,展現提示窗口 41 self.present(alert, animated: true, completion: nil) 42 } 43 44 override func didReceiveMemoryWarning() { 45 super.didReceiveMemoryWarning() 46 // Dispose of any resources that can be recreated. 47 } 48 }