나의 플랫폼/iOS

[iOS] 키보드 강제로 내리기

GsBOB 2017. 6. 16. 10:54
1
2
3
4
5
@IBAction func 특정이벤트 메소드(_ sender: AnyObject) {
    // sender가 UITextView 이거나 UITextField 일경우
    // 그렇지 않을 경우 sender를 UITextView나 UITextField로 변경 해주세요.
    _ = sender.resignFirstResponder()
}
cs

위와 같이 UITextView 나 UITextField 에 resignFirstResponder 함수를 호출 하면 된다.