Skip to content

Instantly share code, notes, and snippets.

@dodyw
Created September 10, 2013 09:21
Show Gist options
  • Save dodyw/6506983 to your computer and use it in GitHub Desktop.
Save dodyw/6506983 to your computer and use it in GitHub Desktop.
UITextField custom background and set padding
[_loginBtn setBackgroundImage:[UIImage imageNamed:@"buttonlogin"] forState:UIControlStateNormal];
UIImage *fieldBGImage = [[UIImage imageNamed:@"inputform"] stretchableImageWithLeftCapWidth:20 topCapHeight:20];
[_userIDTxt setBorderStyle:UITextBorderStyleNone];
[_userIDTxt setBackground:fieldBGImage];
[_tinTxt setBorderStyle:UITextBorderStyleNone];
[_tinTxt setBackground:fieldBGImage];
UIView *paddingView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 20, 20)];
_userIDTxt.leftView = paddingView;
_userIDTxt.leftViewMode = UITextFieldViewModeAlways;
_tinTxt.leftView = paddingView;
_tinTxt.leftViewMode = UITextFieldViewModeAlways;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment