(informal protocol)
| Framework | /System/Library/Frameworks/Quartz.framework/Frameworks/QuartzComposer.framework | 
| Companion guide | |
| Declared in | QCCompositionPickerView.h | 
The QCCompositionPickerViewDelegate informal protocol defines methods that allow  your application to respond to changes in a composition picker view (a QCCompositionPickerView object).
Performs custom tasks when the selected composition in the composition picker view changes.
- (void) compositionPickerView:(QCCompositionPickerView*)pickerView didSelectComposition:(QCComposition*)composition
The composition picker view in which the selection changed.
The selected composition or nil if the previously selected composition is no longer selected.
Quartz Composer invokes this method when the selected composition in the composition picker view changes. Implement this method if you want to perform custom tasks at that time.
QCCompositionPickerView.hPerforms custom tasks when the composition picker view starts animating a composition.
- (void) compositionPickerViewDidStartAnimating:(QCCompositionPickerView*)pickerView
The composition picker view in which the composition started animating.
Quartz Composer invokes this method when the composition picker view starts animating a composition. Implement this method if you want to perform custom tasks at that time.
QCCompositionPickerView.hPerforms custom tasks when the composition picker view stops animating a composition.
(void) compositionPickerViewWillStopAnimating:(QCCompositionPickerView*)pickerView
The composition picker view in which the composition stopped animating.
Quartz Composer invokes this method whenever the composition picker view stops animating a composition. Implement this method if you want to perform custom tasks at that time.
QCCompositionPickerView.h
        © 2007 Apple Inc. All Rights Reserved. (Last updated: 2007-05-09)