Guest User

Untitled

a guest
May 25th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. self.view.center = self.view.center;
  2. self.view.layer.shadowColor = [UIColor blackColor].CGColor;
  3. self.view.layer.shadowOpacity = 0.7f;
  4. self.view.layer.shadowOffset = CGSizeMake(0.0f, 0.0f);
  5. self.view.layer.shadowRadius = 5.0f;
  6. self.view.layer.masksToBounds = NO;
  7. UIBezierPath *path = [UIBezierPath bezierPathWithRect:CGRectMake(19, 129, 282.0f, 222.0f)];
  8. self.view.layer.shadowPath = path.CGPath;
Add Comment
Please, Sign In to add comment