Skip to content

Instantly share code, notes, and snippets.

@riosc
Created April 7, 2014 17:22
Show Gist options
  • Save riosc/10024494 to your computer and use it in GitHub Desktop.
Save riosc/10024494 to your computer and use it in GitHub Desktop.
padding texfield ios
- (CGRect)textRectForBounds:(CGRect)bounds {
return CGRectMake(bounds.origin.x + 10, bounds.origin.y + 13,
bounds.size.width - 20, bounds.size.height - 16);
}
- (CGRect)editingRectForBounds:(CGRect)bounds {
return [self textRectForBounds:bounds];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment