
[프로토콜] UITextFieldDelegate 공식문서 뜯어보기
·
📱 iOS/UIKit
학습 목표 Delegate 디자인 패턴을 익힘 UITextFieldDegate 프로토콜을 익힘 학습 내용 Delegate 디자인 패턴 객체가 자신의 기능을 다른 객체에게 위임하여 기능을 실행하는 것 Delegate는 프로토콜로 구현됨, *(Delegate) = 위임하다 UITextField NSObject - UIResponder - UIView - UIControl - UITextField 위 사진의 예로 이번 UITextFieldDelegate를 설명하겠다. UITextField에 글자를 입력 바꾸기 버튼을 누름 UILabel에 1번에서 작성한 글자가 보이게 됨 UITextFieldDegate @MainActor protocol UITextFieldDelegate UITextField에서 발생하는 이..