Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save logicaroma/967526 to your computer and use it in GitHub Desktop.
Save logicaroma/967526 to your computer and use it in GitHub Desktop.
UITextView With a Rounded Corner & Colored Border
[textView.layer setBackgroundColor: [[UIColor whiteColor] CGColor]];
[textView.layer setBorderColor: [[UIColor colorWithRed:224/255.0 green:224/255.0 blue:224/255.0 alpha:1.0] CGColor]];
[textView.layer setBorderWidth: 2.0];
[textView.layer setCornerRadius:8.0f];
[textView.layer setMasksToBounds:YES];
@christ776
Copy link

👍

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