Skip to content

Instantly share code, notes, and snippets.

@namanhams
Created February 26, 2015 07:33
Show Gist options
  • Save namanhams/dc3b491557ec6fb12060 to your computer and use it in GitHub Desktop.
Save namanhams/dc3b491557ec6fb12060 to your computer and use it in GitHub Desktop.
UITextField+LeftMargin
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;
}
}
@kublaios
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment