Reputation: 4808
I am new to iOS development. I want to develop a screenshot application in iPhone and iPad. Is it possible in iOS. I want to capture screenshot of all application in iPhone. Is it legal to do so?
Thanks
Upvotes: 1
Views: 1285
Reputation: 43330
It is illegal, but the iOS app Display Recorder did it with a framework called IOSurface, which manages a rectangular pixel buffer at the kernel level. You will not be able to detect shake events at the kernel level, but you can record a fairly shaky stream with the pixel buffer and have the user select the appropriate image.
Upvotes: 5