Skip to content

Instantly share code, notes, and snippets.

@hanksudo
Created March 15, 2012 09:18
Show Gist options
  • Save hanksudo/2043145 to your computer and use it in GitHub Desktop.
Save hanksudo/2043145 to your computer and use it in GitHub Desktop.
UITextField Changed Event
- (void)viewDidLoad
{
[super viewDidLoad];
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(textFieldChanged:)
name:UITextFieldTextDidChangeNotification
object:toTextField];
}
- (void)textFieldChanged:(id)sender
{
NSLog(@"t = %@", toTextField.text);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment