| Inherits from | |
| Conforms to | |
| Framework | System/Library/Frameworks/Quartz.framework/ImageKit.framework |
| Availability | Available in Mac OS X v10.5 and later. |
| Declared in | IKSaveOptions.h |
| Related sample code |
The IKSaveOptions class initializes, adds, and manages user interface options for saving image data.
imageProperties property
imageUTType property
userSelection property
delegate property
For more about Objective-C properties, see “Properties” in The Objective-C Programming Language.
Returns the delegate object. (read-only)
@property(readonly) id delegate
IKSaveOptions.hReturns a dictionary of updated image properties that reflects the user’s selection. (read-only)
@property(readonly) NSDictionary *imageProperties
IKSaveOptions.hReturns the uniform type identifier that reflects the user’s selection. (read-only)
@property(readonly) NSString *imageUTType
IKSaveOptions.hReturns a dictionary that contains the save options selected by the user. (read-only)
@property(readonly) NSDictionary *userSelection
IKSaveOptions.hAdds IKSaveOptions UI to a NSSavePanel.
- (void)addSaveOptionsAccessoryViewToSavePanel:(NSSavePanel *)savePanel
The save panel to add the IKSaveOptions to.
IKSaveOptions.hAdds the save options interface to the specified view.
- (void)addSaveOptionsToView:(NSView *)view
The view that the interface is added to.
IKSaveOptions.hInitializes a save options accessory pane for the provided image properties and uniform type identifier.
- (id)initWithImageProperties:(NSDictionary *)imageProperties imageUTType:(NSString *)imageUTType
A dictionary of image properties.
A string that specifies a uniform type identifier, such as JPEG. See Uniform Type Identifiers Overview.
The initialized object.
IKSaveOptions.h© 2009 Apple Inc. All Rights Reserved. (Last updated: 2009-08-25)