↧
Answer by bobbypage for Take screenshot of the window
There is no public method which allows you to take a screenshot of the entire screen (i.e. with the status bar). There is a private method though UIGetScreenImage which allows you to use achieve this...
View ArticleAnswer by Giuseppe Garassino for Take screenshot of the window
What you're using is more or less the official way Apple suggests to take a screenshot.The problem is that this method takes a screenshot of your application output on screen and not of your whole...
View ArticleTake screenshot of the window
I'm using this method to take a screenshot of my app:+ (NSData*)TakeScreenshot { // Create a graphics context with the target size // On iOS 4 and later, use UIGraphicsBeginImageContextWithOptions to...
View Article