Is it possible in objective C that we can take the screen shot in objective c and stored this image in UIImage.
feedback
|
|
You need to create a bitmap context of the size of your screen and use
to copy your view in it. Once this is done, you can use
to create a CGImage from your context. Elaboration :
Note that if you run your code in response to a click on a UIButton, your image will shows that button pressed. | ||||
|
feedback
|
|
The previous code assumes that the view to be captured lives on the main screen...it might not. Would this work to always capture the content of the main window? (warning: compiled in StackOverflow)
| |||
feedback
|
|
Technical Q&A QA1703 Screen Capture in UIKit Applications http://developer.apple.com/iphone/library/qa/qa2010/qa1703.html | |||
|
feedback
|
|
Yes, here's a link to the Apple Developer Forums https://devforums.apple.com/message/149553 | |||
|
feedback
|