목록IOS (26)
어흥
[팝업 띄우기] 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은 한 쌍..
1. View Controller란? : 스크린 하나를 관리한다 -> 페이지당 하나라고 생각하면 편하다 (Android의 Activity와 비슷하다고 생각한다) Ex) 여러개의 기사 리스트를 보여주는 화면 + 기사를 눌렀을 때 해당 기사에 대한 상세 정보를 보여주는 화면 -> 2개의 View Controller 2. 종류 - Design v.s. Code (View Controller) - 연결 방법: AAA Code View Controller BBB Design View Controller 1) UI를 보여주는 화면인 BBB Storyboard(Design)의 우측 상단에 위치한 Identity Inspector 클릭 2) Identity and Type>Name : AAA 컨트롤러 입력(Code) ..