LMCameraCaptureManagerDelegate

Objective-C

@protocol LMCameraCaptureManagerDelegate <NSObject>

Swift

protocol LMCameraCaptureManagerDelegate : NSObjectProtocol

Delegate of camera capture manager

  • Calls when device is jailbroken

    Declaration

    Objective-C

    - (void)deviceIsJailbroken;

    Swift

    func deviceIsJailbroken()
  • Flag for check if we must delete resulting video (e.g. in cases of sessions without any face in frame)

    Declaration

    Objective-C

    - (BOOL)shouldDeleteResultingVideo;

    Swift

    func shouldDeleteResultingVideo() -> Bool
  • Calls when starts to proccessing recorded video

    Declaration

    Objective-C

    - (void)videoSaveProcessBegan;

    Swift

    func videoSaveProcessBegan()
  • Calls on error during video flushing

    Declaration

    Objective-C

    - (void)videoSavedWithError:(NSError *_Nullable)error;

    Swift

    func videoSavedWithError(_ error: (any Error)?)
  • Calls in any cases of problems while recording video

    Declaration

    Objective-C

    - (void)videoStopWithError:(NSError *_Nonnull)error;

    Swift

    func videoStopWithError(_ error: any Error)