Created
February 26, 2015 07:33
-
-
Save namanhams/dc3b491557ec6fb12060 to your computer and use it in GitHub Desktop.
UITextField+LeftMargin
This file contains 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
extension UITextField { | |
func setTextLeftPadding(left:CGFloat) { | |
var leftView:UIView = UIView(frame: CGRectMake(0, 0, left, 1)) | |
leftView.backgroundColor = UIColor.clearColor() | |
self.leftView = leftView; | |
self.leftViewMode = UITextFieldViewMode.Always; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please check out this issue:
http://stackoverflow.com/questions/31422247/issue-with-uitextfields-leftview-property