Protocol: UIVideoEditorControllerDelegate
Overview
The UIVideoEditorControllerDelegate protocol defines methods that your delegate object must implement to respond to the video editor. The methods of this protocol notify your delegate when the system has saved an edited movie or the user has cancelled editing to discard any changes. There is also a method for responding to errors encountered by the video editor.Called when the video editor is unable to load or save a movie. (required)Called when the system has finished saving an edited movie. (required)Called when the user has cancelled a movie editing operation. (required)
Instance Method Summary (collapse)
-
- videoEditorController:didFailWithError:
Called when the video editor is unable to load or save a movie.
-
- videoEditorController:didSaveEditedVideoToPath:
Called when the system has finished saving an edited movie.
-
- videoEditorControllerDidCancel:
Called when the user has cancelled a movie editing operation.
Instance Method Details
- (Object) videoEditorController(editor, didFailWithError:error)
Called when the video editor is unable to load or save a movie. (required) Loading a movie into the video editor could fail because of an invalid filesystem path or an invalid media format. Saving could fail because of a lack of disk space or other reasons.
- (Object) videoEditorController(editor, didSaveEditedVideoToPath:editedVideoPath)
Called when the system has finished saving an edited movie. (required)
- (Object) videoEditorControllerDidCancel(editor)
Called when the user has cancelled a movie editing operation. (required)