[Swift4] 경고 Display Alert 표시
이번에 우리는 경보를 표시하려고 시도했다.
우선 Main에 버튼을 놓으세요.스토리보드로 만들어요.
(Xcode의 오른쪽 하단에서 "button"을 검색하면 바로 찾을 수 있습니다.)
경보를 표시하는 이름을 지어 보았다.
이어서 두 개의 Xcode 오른쪽 상단 모서리가 겹치는 버튼입니다.
"Show the assistant editor" 클릭
ViewController의 맨 아래에 연결합니다.
(경고 표시에서 control을 눌러 드래그합니다.)
Connection: Action
Name: displayAlert
Type: UIButton
Event: Touch Up Inside
Arguments: None
구문을 생성합니다.
다음으로 내용을 편집합니다.
ViewController.swiftimport UIKit
class ViewController: UIViewController {
//@IBOutlet weak var imageView: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
// 今回の「アラートを表示」はここから
@IBAction func displayAlert() {
let title = "アラートテスト"
let message = "タップしてくれてサンクス."
let okText = "ok"
let alert = UIAlertController(title: title, message: message, preferredStyle: UIAlertControllerStyle.alert)
let okayButton = UIAlertAction(title: okText, style: UIAlertActionStyle.cancel, handler: nil)
alert.addAction(okayButton)
present(alert, animated: true, completion: nil)
}
// 今回の「アラートを表示」はここまで
}
마지막으로 Xcode 왼쪽 상단의 실행 단추로 구축해 보십시오.
잘, 경보가 뜨나? ^^
Reference
이 문제에 관하여([Swift4] 경고 Display Alert 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/njn0te/items/8233cb91c187b1450816
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
ViewController의 맨 아래에 연결합니다.
(경고 표시에서 control을 눌러 드래그합니다.)
Connection: Action
Name: displayAlert
Type: UIButton
Event: Touch Up Inside
Arguments: None
구문을 생성합니다.
다음으로 내용을 편집합니다.
ViewController.swiftimport UIKit
class ViewController: UIViewController {
//@IBOutlet weak var imageView: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
// 今回の「アラートを表示」はここから
@IBAction func displayAlert() {
let title = "アラートテスト"
let message = "タップしてくれてサンクス."
let okText = "ok"
let alert = UIAlertController(title: title, message: message, preferredStyle: UIAlertControllerStyle.alert)
let okayButton = UIAlertAction(title: okText, style: UIAlertActionStyle.cancel, handler: nil)
alert.addAction(okayButton)
present(alert, animated: true, completion: nil)
}
// 今回の「アラートを表示」はここまで
}
마지막으로 Xcode 왼쪽 상단의 실행 단추로 구축해 보십시오.
잘, 경보가 뜨나? ^^
Reference
이 문제에 관하여([Swift4] 경고 Display Alert 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/njn0te/items/8233cb91c187b1450816
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
import UIKit
class ViewController: UIViewController {
//@IBOutlet weak var imageView: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
// 今回の「アラートを表示」はここから
@IBAction func displayAlert() {
let title = "アラートテスト"
let message = "タップしてくれてサンクス."
let okText = "ok"
let alert = UIAlertController(title: title, message: message, preferredStyle: UIAlertControllerStyle.alert)
let okayButton = UIAlertAction(title: okText, style: UIAlertActionStyle.cancel, handler: nil)
alert.addAction(okayButton)
present(alert, animated: true, completion: nil)
}
// 今回の「アラートを表示」はここまで
}
잘, 경보가 뜨나? ^^
Reference
이 문제에 관하여([Swift4] 경고 Display Alert 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/njn0te/items/8233cb91c187b1450816텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)