Skip to content

Instantly share code, notes, and snippets.

@yfujiki
Created April 23, 2012 11:58
Show Gist options
  • Save yfujiki/2470435 to your computer and use it in GitHub Desktop.
Save yfujiki/2470435 to your computer and use it in GitHub Desktop.
Add padding to UITextField
UIView *paddingView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 5, 20)];
textField.leftView = paddingView;
textField.leftViewMode = UITextFieldViewModeAlways;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment