, , ( - , 1- ).
, UITextField -textFieldDidEndEditing:
-
1) :
@protocol TextControllerDelegate <NSObject>
@optional
- (void)textFieldDidEndEditing:(UITextField *)textField;
@end
2) @property (nonatomic, unsafe_unretained, readwrite) id <TextControllerDelegate> delegate;
3) - (void)textFieldDidEndEditing:(UITextField *)textField , [delegate textFieldDidEndEditing:textField]
:
1) implement the object of the first class, install the delegate on yourself (in the second class).
2) implementation method - (void)textFieldDidEndEditing:(UITextField *)textField
source
share