/ Published in: Objective C
URL: http://stackoverflow.com/questions/3727068/set-padding-for-uitextfield-with-uitextborderstylenone
cool hack to add padding to a text field
Expand |
Embed | Plain Text
UIView *paddingView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 5, 20)]; textField.leftView = paddingView; textField.leftViewMode = UITextFieldViewModeAlways;
You need to login to post a comment.
