Created
December 10, 2013 16:38
-
-
Save skwashua/7893674 to your computer and use it in GitHub Desktop.
iOS 7 Screenshot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CGSize imageSize = [[UIApplication sharedApplication] keyWindow].bounds.size; | |
UIGraphicsBeginImageContextWithOptions(imageSize, NO, [[UIScreen mainScreen] scale]); | |
[[[UIApplication sharedApplication] keyWindow] drawViewHierarchyInRect:[[UIApplication sharedApplication] keyWindow].bounds afterScreenUpdates:YES]; | |
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext(); | |
UIGraphicsEndImageContext(); | |
return viewImage; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment