Skip to content

Instantly share code, notes, and snippets.

@skabber
Created October 2, 2009 00:05
Show Gist options
  • Save skabber/199336 to your computer and use it in GitHub Desktop.
Save skabber/199336 to your computer and use it in GitHub Desktop.
UIImage *im = [UIImage imageNamed:@"my-image-name.jpg"];
UIImageView *uiimv = [[UIImageView alloc] initWithImage:im];
[uiimv.layer setMasksToBounds:YES];
uiimv.layer.cornerRadius = 8;
[self.view addSubview:uiimv];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment