Skip to content

Instantly share code, notes, and snippets.

@jodell
Created February 2, 2012 22:49
Show Gist options
  • Save jodell/1726287 to your computer and use it in GitHub Desktop.
Save jodell/1726287 to your computer and use it in GitHub Desktop.
UITextFieldView padding
/* Pad a UITextField View */
UIView *paddingView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 10, 20)];
textfield1.leftView = paddingView;
textfield1.leftViewMode = UITextFieldViewModeAlways;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment