UIVideoEditorControllerDelegate Protocol Reference
| Conforms to | |
| Framework | /System/Library/Frameworks/UIKit.framework |
| Availability | Available in iOS 3.1 and later. |
| Declared in | UIVideoEditorController.h |
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.
The delegate methods are responsible for dismissing the video editor when the operation completes. To dismiss the editor, call the dismissModalViewControllerAnimated: method of the parent controller responsible for displaying the video editor. The video editor is described in UIVideoEditorController Class Reference.
Instance Methods
videoEditorController:didFailWithError:
Called when the video editor is unable to load or save a movie. (required)
Parameters
- editor
The video editor that was unable to load or save a movie.
- error
The loading or saving error.
Discussion
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.
Availability
- Available in iOS 3.1 and later.
Declared In
UIVideoEditorController.hvideoEditorController:didSaveEditedVideoToPath:
Called when the system has finished saving an edited movie. (required)
Parameters
- editor
The video editor that has finished editing and saving a movie.
- editedVideoPath
The filesystem path to the edited movie.
Availability
- Available in iOS 3.1 and later.
Declared In
UIVideoEditorController.hvideoEditorControllerDidCancel:
Called when the user has cancelled a movie editing operation. (required)
Parameters
- editor
The video editor that the user cancelled, not wanting to save changes.
Availability
- Available in iOS 3.1 and later.
Declared In
UIVideoEditorController.h© 2009 Apple Inc. All Rights Reserved. (Last updated: 2009-07-07)