Skip to content

Instantly share code, notes, and snippets.

@jkaufman
Created August 29, 2014 16:47
Show Gist options
  • Save jkaufman/8fa653fd6ab9221830e2 to your computer and use it in GitHub Desktop.
Save jkaufman/8fa653fd6ab9221830e2 to your computer and use it in GitHub Desktop.
UITextField rightView mode
- (void)viewDidLoad
{
[super viewDidLoad];
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 30, 30)];
view.backgroundColor = [UIColor redColor];
self.textField.rightView = view;
self.textField.rightViewMode = UITextFieldViewModeUnlessEditing;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment