Skip to content

Instantly share code, notes, and snippets.

@psobko
Created October 5, 2013 20:43
Show Gist options
  • Save psobko/6845803 to your computer and use it in GitHub Desktop.
Save psobko/6845803 to your computer and use it in GitHub Desktop.
- (void)textFieldDidBeginEditing:(UITextField *)textField
{
UITextPosition *beginning = [textField beginningOfDocument];
[textField setSelectedTextRange:[textField textRangeFromPosition:beginning
toPosition:beginning]];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment