티스토리 뷰
알림창에 텍스트필드 여러개 사용 가능할까?
let insert = UIAlertAction(title: "추가", style: .default) {_ in
print(alert.textFields?[0].text ??)
}
여기서 textFields?[0]인 게 신기해서 한 번 찾아봤다
https://developer.apple.com/documentation/uikit/uialertcontroller/1620104-textfields
alert controller에서 textfield는 배열로 사용되고 있었다.
따라서 alertController에 텍스트필드를 여러 번 추가해주면 여러 개를 사용할 수 있었다.
alert.addTextField{(tf) in
tf.keyboardType = .alphabet
}
alert.addTextField{(tf) in
tf.placeholder = "dhdhdhdh"
tf.keyboardType = .alphabet
}
'TIL' 카테고리의 다른 글
08월 08일: must register a nib or a class for the identifier or connect a prototype cell in a storyboard (0) | 2023.08.08 |
---|---|
08월 07일: 생명주기가 필요한 이유 (0) | 2023.08.07 |
08월 03일: this class is not key value coding-compliant for the key listCell. (0) | 2023.08.03 |
08월 02일: Outlets cannot be connected to repeating content. (0) | 2023.08.02 |
08월 01일: 수업 내용 요약 (0) | 2023.08.01 |
최근에 올라온 글