Skip to content

Instantly share code, notes, and snippets.

@gauravds
Forked from NarendraPunchh/Crop.m
Created November 29, 2016 21:24
Show Gist options
  • Save gauravds/f9bf7b17063812e3b2dcce16776f362f to your computer and use it in GitHub Desktop.
Save gauravds/f9bf7b17063812e3b2dcce16776f362f to your computer and use it in GitHub Desktop.
- (void)setMaskImage {
CALayer *mask = [CALayer layer];
mask.contents = (id)[[UIImage imageNamed:@"infoLogo"] CGImage];
mask.frame = self.imgItem.bounds;
self.imgItem.layer.mask = mask;
self.imgItem.layer.masksToBounds = YES;
self.imgItem.contentMode = UIViewContentModeCenter;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment