iOS29 [iOS] tableView in storyboard TableViewController.swift와 storyboard에서 TableViewController 연결 : class명을 파일명과 일치시킴 Object에서 TableView, TableViewCell 가져와서 배치 cell의 사이즈 조정 (row size) TableViewCell의 size inspector에서 row height 조절 TableView의 size inspector에서도 row height 조절 custom cell Object에서 imageView, Label 등 가져와서 배치 auto layout 설정 각 UI컴포넌트마다 contraint 설정 (size, rate, spacing..) in TableViewController TableViewCon.. 2021. 2. 5. [iOS] UIAlertController, UIAlertAction 이런 알림창을 띄우고 처리해야 할 때 사용하는 객체가 UIAlertController와 UIAlertAction let alert = UIAlertController(title: "안내", message: "계속하시겠습니까?", preferredStyle: .alert) let actionYes = UIAlertAction(title: "예", style: .default, handler: nil) let actionNo = UIAlertAction(title: "아니오", style: .cancle, handler: nil) alert.addAction(action) alert.addAction(action2) present(alert, animated: true, completion: nil) 우선 .. 2021. 1. 30. 이전 1 2 3 4 다음 728x90