Up
Authors
- Adam Fedor (
fedor@colorado.edu)
-
Date: Generated at 2026-04-23 07:32:18 +0000
Custom image representation.
Copyright: (C) 1996 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSCustomImageRep.h
Availability: OpenStep
Instance Variables
- (id)
delegate;
Availability: OpenStep
- (SEL)
drawSelector;
Availability: OpenStep
- (id)
initWithDrawSelector: (SEL)aSelector
delegate: (id)anObject;
Availability: OpenStep
Initializes a new NSCustomImageRep with. When
a -draw
message is
recieved it send aSelector message to
the delegate anObject. The delegate is not
retained, so it is the caller's responsibility
to ensure the delegate remains valid for the life of
the receiver.
See Also:
-delegate
-drawSelector
[NSImageRep -draw]
Instance Variables for NSCustomImageRep Class
@protected id
_delegate;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected SEL
_selector;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
Up