ActionSheet를 구현하는 방법 [Xcode/Storyboard]

4303 단어 XcodeactionSheet
앱을 사용하고 있다면 카메라나 앨범을 선택하는 시트를 본 적이 있는지 생각합니다.
Xcode/Storyboard에서 어떻게 구현하는지 쉽게 구현하고 기사로 했습니다.

환경



・Mac Book Pro(macOS:BigSur)
・Xcode(ver:12.5)

구현 예





코드 예



ViewController.swift
class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
    }


    @IBAction func showAlert(_ sender: Any) {

        let alertController = UIAlertController(title: "タイトル", message: "メッセージ", preferredStyle: .actionSheet)

        let action1 = UIAlertAction(title: "タイトル1", style: .default) { alert in
            print("Action1")
        }

        let action2 = UIAlertAction(title: "タイトル2", style: .default) { (alert) in
            print("Action2")
        }

        let action3 = UIAlertAction(title: "キャンセル", style: .cancel, handler: nil)

        alertController.addAction(action1)
        alertController.addAction(action2)
        alertController.addAction(action3)
        self.present(alertController, animated: true, completion: nil)
    }
}

좋은 웹페이지 즐겨찾기