#UIAlertController 썸네일형 리스트형 [iOS] Custom Alert UIAlertController로 바뀐 후, 알림창을 어떻게 바꿀 수 있을까 해서 테스트를 해보았습니다. import UIKit class CustomAlertViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() let alertBtn = UIButton(type: .system) alertBtn.frame = CGRect(x: 0, y: 100, width: 150, height: 30) alertBtn.setTitle("show alert", for: .normal) alertBtn.addTarget(self, action: #selector(shwoAlert(_:)), for: .touchUpInsid.. 더보기 [iOS] Get image with actionsheet private func actionSheetPicker() {let alert = UIAlertController(title: nil, message: "이미지를 가져올 곳을 선택해주세요.", preferredStyle: .actionSheet) let cameraAction = UIAlertAction(title: "카메라", style: .default, handler: {action in self.pickImage(.camera)})let albumAction = UIAlertAction(title: "저장앨범", style: .default, handler: {action in self.pickImage(.savedPhotosAlbum)})let photoLibraryAction = UIAlert.. 더보기 이전 1 다음