可能重复:
How does the iOS app Display Recorder record the screen without using private API?
我已经完成了我的iphone应用程序的屏幕录制,它的工作正常。它是应用程序内的录制屏幕,但我需要使用此应用程序录制iphone中的任何其他屏幕,当我触摸开始录制应用程序按钮时,它需要退出应用程序,应用程序必须在后台运行才能记录屏幕。
-(IBAction)onStartRecording:(id)sender {
[((ScreenCaptureView*)self.view) startRecording];
}
-(IBAction)onStopRecording:(id)sender {
[((ScreenCaptureView*)self.view) stopRecording];
}
我创建了一个类ScreenCaptureView并实现编码以在那里记录屏幕..如何运行这个应用程序并记录屏幕?
先谢谢。
答案 0 :(得分:0)
有一个名为Display recorder的应用程序正在执行此操作。检查here.。但按照this news,它已不复存在了。因此,普通应用程序无法实现。
此处提出了类似的问题Is there an iOS screen recorder framework for recording demos?。