Created
April 23, 2012 11:58
-
-
Save yfujiki/2470435 to your computer and use it in GitHub Desktop.
Add padding to UITextField
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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