Skip to content

Instantly share code, notes, and snippets.

@BrunoVillanova
Created July 15, 2015 14:46
Show Gist options
  • Save BrunoVillanova/cf9f8e6a374745073f8d to your computer and use it in GitHub Desktop.
Save BrunoVillanova/cf9f8e6a374745073f8d to your computer and use it in GitHub Desktop.
UIGraphicsBeginImageContext(self.view.frame.size);
[[UIImage imageNamed:@"image"] drawInRect:self.view.bounds];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
self.view.backgroundColor = [UIColor colorWithPatternImage:image];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment