Swift 警告控制項(UIAlertController) 🚨學習教學 – 瞬間學会
Swift 是一種新興的程式語言,它可以讓開發者快速開發 iOS 應用程式。在 Swift 中,有一個叫做 UIAlertController 的警告控制項,可以讓開發者快速地建立警告視窗,讓使用者可以做出決定。在本文中,我們將會介紹如何使用 UIAlertController 來建立警告視窗,讓你可以瞬間學會如何使用它。
建立 UIAlertController
要建立一個 UIAlertController,你需要使用 UIAlertController
類別的 init(title:message:preferredStyle:)
方法,它會回傳一個 UIAlertController 物件。
let alertController = UIAlertController(title: "Title", message: "Message", preferredStyle: .alert)
在上面的程式碼中,我們建立了一個 UIAlertController 物件,並且指定了它的標題、訊息和樣式。
添加按鈕
當你建立了一個 UIAlertController 物件之後,你可以使用 addAction(_:)
方法來添加按鈕。
let okAction = UIAlertAction(title: "OK", style: .default, handler: nil)
alertController.addAction(okAction)
在上面的程式碼中,我們建立了一個 UIAlertAction 物件,並且指定了它的標題、樣式和處理器,然後將它添加到 UIAlertController 物件中。
顯示 UIAlertController
當你建立了 UIAlertController 並且添加了按鈕之後,你可以使用 present(_:animated:completion:)
方法來顯示它。
present(alertController, animated: true, completion: nil)
在上面的程式碼中,我們使用 present(_:animated:completion:)
方法將 UIAlertController 顯示出來。
總結
在本文中,我們介紹了如何使用 Swift 的 UIAlertController 來建立警告視窗,讓你可以瞬間學會如何使用它。我們先建立了一個 UIAlertController 物件,然後添加了按鈕,最後使用 present(_:animated:completion:)
方法將它顯示出來。
如果你想要添加更多的按鈕,你可以使用 addAction(_:)
方法來添加更多的 UIAlertAction 物件,並且指定它們的標題、樣式和處理器。
最後,如果你想要更深入地了解 UIAlertController,你可以參考 Apple 的官方文件,它會提供更多的資訊。
推薦閱讀文章
推薦閱讀文章
Swift 警告控制項(UIAlertController) 🚨學習教學 – AppCoda
使用 Swift 實作 UIAlertController 警告控制項 – Medium
How to use UIAlertController – Hacking with Swift
UIAlertController Tutorial: Getting Started – raywenderlich.com
UIAlertController Tutorial for iOS: How To Create and Use – iOScreator</a
延伸閱讀本站文章
推薦學習youtube影片
How to Add Alerts in Swift using UIAlertController (XCode 12)