This class provides an interface to an application's
help manager object used to
provide online help in the application. You won't
need to use this class, as Project Builder and Interface Builder
provide support for integrating help documents with an application.
@interface NSHelpManager : NSObject
|
// Accessor Methods |
- (void)setContextHelp:(NSAttributedString *)attrString forObject:(id)object;
|
// Class Methods |
+ (BOOL)isContextHelpModeActive;
|
+ (void)setContextHelpModeActive:(BOOL)active;
|
+ (NSHelpManager *)sharedHelpManager;
|
// Instance Methods |
- (NSAttributedString *)contextHelpForObject:(id)object;
|
- (void)removeContextHelpForObject:(id)object;
|
- (BOOL)showContextHelpForObject:(id)object locationHint:(NSPoint)pt;
|