Skip to content

Instantly share code, notes, and snippets.

@liamnichols
Created November 7, 2013 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liamnichols/7352616 to your computer and use it in GitHub Desktop.
Save liamnichols/7352616 to your computer and use it in GitHub Desktop.
- (void)applicationDidEnterBackground:(UIApplication *)application
{
self.window.layer.rasterizationScale = 0.1f;
self.window.layer.shouldRasterize = YES;
}
- (void)applicationWillEnterForeground:(UIApplication *)application
{
self.window.layer.rasterizationScale = 1.0f;
self.window.layer.shouldRasterize = NO;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment