Guest User

Untitled

a guest
Jun 20th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. #import <QuartzCore/QuartzCore.h>
  2.  
  3. [self.content.layer setBackgroundColor:[[UIColor whiteColor] CGColor]];
  4. [self.content.layer setBorderColor:[[UIColor grayColor] CGColor]];
  5. [self.content.layer setBorderWidth:1.0];
  6. [self.content.layer setCornerRadius:8.0];
  7. [self.content.layer setMasksToBounds:YES];
  8. self.content.clipsToBounds = YES;
  9.  
  10.  
  11. transTextView.layer.borderWidth = 2.0f;
  12. transTextView.layer.borderColor = [[UIColor blackColor] CGColor];
Add Comment
Please, Sign In to add comment