어흥

[Swift] 팝업 본문

iOS

[Swift] 팝업

라이언납시오 2020. 8. 12. 10:53
728x90
반응형

[팝업 띄우기]

Design View Controller에 위치한 버튼을 누른 후, ctrl+드래그를 하여 Code View Controller에서 아래와 같은 코드를 작성한다

@IBAction func hello(_ sender: Any){
	let alert = UIAlertController(title: "Pop-up", message: "My First App!", preferredStyle: .alert)
	let action = UIAlertAction(title: "OK", style: .default, handler: nil)
    alert.addAction(action)
    present(alert, animated: true, completion: nil)
}

※ alert와 action은 한 쌍 처럼 사용하면 된다.

 

- nil이란?

: Value가 없는 것(Pointer가 존재하지 않는 것 -> X)

 

- 변수에 할당된 것이 바뀌지 않을 경우, 컴파일과 실행상에선 문제가 발생하지 않지만 var보다는 let을 사용하는 것이 바람직하다

 

 

728x90
반응형

'iOS' 카테고리의 다른 글

[Swift] Flow Control  (0) 2020.08.23
[Swift] 레이아웃 + 기본설정  (2) 2020.08.21
[Swift] 기초 문법/ 지식  (2) 2020.08.20
[Swift] String + Variable(변수)  (0) 2020.08.20
[Swift] View Controller  (0) 2020.08.11
Comments