This framework is designed to record video from the app's screen. For testing, debugging errors in applications, and demo presentations. You can crop the recorded video, save to device, send via email or social networks.
To run the example project, clone the repo, and run pod install
from the Example directory first.
#import <AVScreenRecorder/AVScreenRecorder.h>
...
// Start Record
[[AVScreenRecorder sharedRecorder] startRecordCompletion:^(BOOL complete, NSError *error){
// do something out code
}];
// Stop Record
[[AVScreenRecorder sharedRecorder] stopRecordCompletion:^(BOOL complete, NSError *error){
// do something out code
}];
AVScreenRecorder is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'AVScreenRecorder'
Add AVScreenRecorder.framework to your Framework.
Aleksey Anisimov, vkrotin.ios@gmail.com
AVScreenRecorder is available under the MIT license. See the LICENSE file for more info.