Inherits from | |
Conforms to | |
Framework | /System/Library/Frameworks/Quartz.framework/ImageKit.framework |
Availability | Available in Mac OS X v10.6 and later. |
Declared in | IKDeviceBrowserView.h |
The IKDeviceBrowserView
allows you to select a camera or scanner from a list of the available devices.
The IKDeviceBrowserView
delegate must conform to the IKDeviceBrowserViewDelegate
protocol. The delegate provides methods to inform you of selection changes in the browser as well as errors encountered when creating the browser list.
selectedDevice
property
displaysLocalCameras
property
displaysNetworkCameras
property
displaysLocalScanners
property
displaysNetworkScanners
property
mode
property
delegate
property
For more about Objective-C properties, see “Properties” in The Objective-C Programming Language.
Specifies the delegate object.
@property(assign) id<IKDeviceBrowserViewDelegate> delegate
The delegate object must conform to the IKDeviceBrowserViewDelegate
protocol.
IKDeviceBrowserView.h
Specifies whether local cameras are displayed by the browser.
@property BOOL displaysLocalCameras
IKDeviceBrowserView.h
Specifies whether local scanners are displayed by the browser.
@property BOOL displaysLocalScanners
IKDeviceBrowserView.h
Specifies whether network cameras are displayed by the browser.
@property BOOL displaysNetworkCameras
IKDeviceBrowserView.h
Specifies whether network scanners are displayed by the browser.
@property BOOL displaysNetworkScanners
IKDeviceBrowserView.h
Specifies the browser display mode.
@property IKDeviceBrowserViewDisplayMode mode
The supported display modes are defined in “Device Browser Display Modes”
IKDeviceBrowserView.h
Returns the selected device. (read-only)
@property(readonly) ICDevice *selectedDevice
deviceBrowserView:selectionDidChange:
(IKDeviceBrowserViewDelegate)IKDeviceBrowserView.h
These constants specify the display mode of the device browser.
enum { IKDeviceBrowserViewDisplayModeTable, IKDeviceBrowserViewDisplayModeOutline, IKDeviceBrowserViewDisplayModeIcon }; typedef NSInteger IKDeviceBrowserViewDisplayMode;
IKDeviceBrowserViewDisplayModeTable
The devices are displayed in a table.
Available in Mac OS X v10.6 and later.
Declared in IKDeviceBrowserView.h
.
IKDeviceBrowserViewDisplayModeOutline
The devices are displayed in an outline.
Available in Mac OS X v10.6 and later.
Declared in IKDeviceBrowserView.h
.
IKDeviceBrowserViewDisplayModeIcon
The devices are displayed as icons.
Available in Mac OS X v10.6 and later.
Declared in IKDeviceBrowserView.h
.
Last updated: 2010-03-24