Mac OS X Reference Library Apple Developer
Search

Help Book Registration

This chapter describes how to make sure your completed help book is registered so that users—and your application—can access it. When a help book has been registered, it becomes available from the Library menu and from the application Help menu. If the help book is listed in the application’s Info.plist file, it is registered automatically when the user chooses application help from the Help menu or from a help button. You can also register your help book by calling the AHRegisterHelpBook function during application startup. If you are creating a tool or application for Mac OS X, you should read this chapter to learn how to add your help book to your software product.

Where to Place Your Help Book Folder

Starting with Mac OS X v10.6, help books are placed directly in an application’s Resources/ folder (see “Organizing the Help Book Bundle”).

Apple strongly recommends that you place your help book in your software bundle. When your help book is bundled with your software, it is installed and moved along with your software.

Note: It is not necessary to place the help book in an application bundle as it is in its own bundle. For example, printer drivers sometimes include help books. As long as you register the help book properly (see ‚ÄúHow to Register Your Help Book‚Äù), Help Viewer can find it.

Important: The .help bundles and the directories ~/Library/Documentation/Help and /Library/Documentation/Help are reserved for use by Apple; use by third-party developers is not supported.

You can use the following procedure to install the help folder in the Resources folder using Xcode:

  1. In the main project window, select Resources in the Groups & Files pane.

  2. From the Action menu, choose Add > Existing files (Figure 3-1).

    Figure 3-1  Adding help files in Xcode

    Adding help files in Xcode
  3. Select the help bundle in the Add Files dialog and click Add.

  4. Select the “Create Folder References for any added folders” radio button and click Add (Figure 3-2).

    Important: If you neglect to perform this step, your help book will work as expected on your development system, but will not work when you transfer the help book to another system.

    Figure 3-2  Create folder references in Xcode

    Creating folder references in Xcode

How to Register Your Help Book

For Cocoa and Java applications, you can take advantage of automatic help book registration by adding the help book name and location to your information property list (Info.plist) file. For Carbon applications, you must take the additional step of calling the Apple Help registration function, AHRegisterHelpBook.

You must register your help book to get the automatic help book support provided by the system. When you register your help book, the system creates a Help menu for your application, populates it with an application help item, and opens your help book when a user chooses this item. In addition, your help book must be registered for it to appear in the Library menu.

Cocoa and Java applications that use the Apple Help API to access their help book content must also call the AHRegisterHelpBook function before making any calls to other Apple Help functions.

Note: You must add your help book to your Info.plist file or call AHRegisterHelpBook to register your help book. If you do not do so, you are responsible for handling all access to your help book yourself, as described in the Apple Help Reference.

Editing the Information Property List File

To register a help book, you need to include the CFBundleHelpBookFolder and CFBundleHelpBookName keys in your Info.plist file. The CFBundleHelpBookFolder key identifies the help book folder; the value associated with this key should be a string specifying the folder name. For example, here is how you would enter the name of the SurfWriter help book folder:

<key>CFBundleHelpBookFolder</key>
<string>SurfWriter.Help</string>

The CFBundleHelpBookName key identifies the help book. The value associated with this key should be a string specifying the help book title, as defined by the AppleTitle tag in the title page of the book. For example, here is how you would enter the title of the SurfWriter Help book:

<key>CFBundleHelpBookName</key>
<string>com.mycompany.surfwriter.help</string>

If you are using Xcode to develop your software product, you can add these keys to your Info.plist file with the following steps:

  1. From the main project window, select the name of the project in the Groups & Files pane.

  2. Select the Info.plist file in the right pane

  3. Add the help book folder and help book name keys to the Info.plist file, as shown in Figure 3-3.

    Figure 3-3  Editing the info.plist file in Xcode

    The Expert settings in the Targets pane of Project Builder

For Mac OS X v10.6 and later, both the CFBundleHelpBookName and CFBundleHelpBookFolder values must be NSStrings. Starting with Mac OS X v10.6, the Name key should not be localized.

Note that your Info.plist file must also contain a valid CFBundleIdentifier entry. For more information on application packaging and property lists, see Bundle Programming Guide.

Using the Apple Help Registration Function

Applications that call Apple Help functions must first call the Apple Help function AHRegisterHelpBookWithURL to register their help book. You would typically do this during application initialization. Once your application has called AHRegisterHelpBookWithURL, your help content is accessible through the use of the Apple Help functions.

Note: Carbon applications must call AHRegisterHelpBookWithURL even if they do not use any other Apple Help. If a Carbon application does not call AHRegisterHelpBookWithURL, Help Viewer will not open the help book. (Cocoa applications that call the NSHelpManager methods openHelpAnchor:inBook: and findString:inBook: (see Table 1-1) do not need to call the AHRegisterHelpBookWithURL function, as those methods register the help book if necessary.)

Listing 3-1 shows an example of how to register a help book using AHRegisterHelpBookWithURL.

Listing 3-1  Registering a help book with AHRegisterHelpBookWithURL

OSStatus RegisterMyHelpBook(void)
{
    CFBundleRef myApplicationBundle;
    CFURLRef myBundleURL;
    OSStatus err = noErr;
 
    myApplicationBundle = NULL;
    myBundleURL = NULL;
 
    myApplicationBundle = CFBundleGetMainBundle();// 1
    if (myApplicationBundle == NULL) {err = fnfErr; goto bail;}
 
    myBundleURL = CFBundleCopyBundleURL(myApplicationBundle);// 2
    if (myBundleURL == NULL) {err = fnfErr; goto bail;}
 
    if (err == noErr) err = AHRegisterHelpBookWithURL(myBundleURL);// 3
    return err;
 
}

Here is what the code in Listing 3-1 does:

  1. Calls the Core Foundation function CFBundleGetMainBundle to retrieve a reference to the application’s main bundle.

  2. Calls the Core Foundation function CFBundleCopyBundleURL to get the path to the application bundle.

  3. Calls AHRegisterHelpBookWithURL, passing the URL obtained in the last step. Apple Help finds the help book located in the bundle and caches the name and location of the help book. Apple Help chooses which localized version of the help book to use based upon the current language of the system.




Last updated: 2009-05-29

Did this document help you? Yes It's good, but... Not helpful...