안녕하세요 하노입니다 :) 오늘은 ActionSheet에 Date Picker 넣는 법을 알아보겠습니다. 1. ActionSheet를 띄워줄 버튼을 생성하고 ViewController와 연결해줍니다. 저는 간단하게 가운데에 넣어서 만들고 오토 레이아웃으로 정 가운데 배치하겠습니다. 2. 버튼을 클릭하면 Alert을 ActionSheet로 생성합니다. let alert = UIAlertController(title: "날짜 고르기", message: "날짜를 골라주세요", preferredStyle: .actionSheet) let ok = UIAlertAction(title: "선택 완료", style: .cancel, handler: nil) alert.addAction(ok) present(alert..