I am just curious to create an app which records video of iphone screen or capture images of iphone screen. I know that Apple doesn\'t allow such kinds of apps on the app store
I have done for my client who wanted. I also recorded video for Facebook screenCast for app review.
All your need is:
An iOS device running iOS 8 or later A Mac running OS X Yosemite or later Lightning cable (the cable that comes with iOS devices)
No need for jailbreak, a third party app or additional hardware.
Here are the steps to do it:
Here is the link for more ways:
Just simply hold the power button and home button at the same time and you can see the captured screen inside your photo album.
@Kapil.. To achieve this, privates apis can be used. But obviously, apple does not allow it. So your app will get Rejected. If you are doing this for personal use, then you can use apis like IOSurface. Hope my answer will help you.
hi you can take screenShot using this code..
UIGraphicsBeginImageContext(self.view.window.frame.size);
[BackView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);