NSHelpManager

NSHelpManager Mac OS X 10.0

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.

figs/cocn_1539.gif

@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;



    Part II: API Quick Reference
    Chapter 13. Foundation Classes