Skip to content

Instantly share code, notes, and snippets.

@brixtonasias
Created October 10, 2013 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brixtonasias/6916768 to your computer and use it in GitHub Desktop.
Save brixtonasias/6916768 to your computer and use it in GitHub Desktop.
Making a UITextView look like a TextField in iOS7
textView.layer.borderWidth = 1;
textView.layer.borderColor = [[[UIColor grayColor] colorWithAlphaComponent:0.25] CGColor];
textView.layer.cornerRadius = 5;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment