# UCSTextFieldReact **Repository Path**: luzizheng/UCSTextFieldReact ## Basic Information - **Project Name**: UCSTextFieldReact - **Description**: A reactive mode for UITextField's text value change observation , including manual editing and code setting; - **Primary Language**: Objective-C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-07-20 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Installation: pod 'UCSTextFieldReact' ## Usage: *import UCSTextFieldReact.h* ***use block*** ​ `self.textField.ucs_textChangeHandler = ^(NSString *text) {` ​ `NSLog(@"text = %@",text);` ​ `};` ***use selector*** `[self.textField ucs_bindTextReactHandler:self andSelector:@selector(handleValueChanging:andTextField:)];` `-(void)handleValueChanging:(NSString *)text andTextField:(UITextField *)textField` `{` ​ `NSLog(@"text = %@",text);` `}`