Skip to content

Instantly share code, notes, and snippets.

@jodell
Created June 21, 2012 19:45
Show Gist options
  • Select an option

  • Save jodell/2968073 to your computer and use it in GitHub Desktop.

Select an option

Save jodell/2968073 to your computer and use it in GitHub Desktop.
pad left
// Set field images, pad left input border.
self.usernameTextField.borderStyle = UITextBorderStyleNone;
self.usernameTextField.background = [UIImage imageNamed:@"text-input.png"];
UIView *usernamePaddingView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 10, 20)];
self.usernameTextField.leftView = usernamePaddingView;
self.usernameTextField.leftViewMode = UITextFieldViewModeAlways;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment