1

Possible Duplicate:
How does the iOS app Display Recorder record the screen without using private API?

i had done screen recording for my iphone application,its working perfect.it is recording screen within the application,but i need to record any other screens in the iphone with this app,When i Touch the start recording app button ,it need to exit from the app and app must run in background to record the screen.

-(IBAction)onStartRecording:(id)sender {
    [((ScreenCaptureView*)self.view) startRecording];
}
-(IBAction)onStopRecording:(id)sender {
    [((ScreenCaptureView*)self.view) stopRecording];
}

i Created a class ScreenCaptureView and implement the coding to record the screen there..how it be possible to run this app and record the screen?.

Thanks in Advance.

Community
  • 1
  • 1
stackiphone
  • 1,245
  • 3
  • 19
  • 41
  • Hi stackiphone, I need to record the screen in my app. In your question you said you were able to record the screen. Can you please provide the sample source code or any reference to achieve that. Many suggested to use this link: http://expired-host.no-ip.com/?h=codethink.no-ip.org But this is not available. I have been trying for the solution. Thanks. – Gani414 May 22 '14 at 05:45
  • Can you tell me how to realize screen recording for your iphone application? Or give me some reference,thank you! – ylgwhyh Mar 29 '17 at 06:17

1 Answers1

0

There was an app called Display recorder who was doing this. Check it here.. But as per this news, it is not there any more. So it is not possible for a normal app.

A similar question was asked here Is there an iOS screen recorder framework for recording demos?.

Community
  • 1
  • 1
iDev
  • 23,310
  • 7
  • 60
  • 85