Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding Help to a Cocoa App

I want to add a simple one-page HTML page help to my Cocoa app. Can you tell me how to do it? I assume I just have to throw in one lousy .html (and maybe one .css?) file somewhere into my Cocoa project in Xcode?

like image 823
Enchilada Avatar asked May 10 '10 22:05

Enchilada


2 Answers

Creating Apple Help documents that are opened in the Help viewer is straightforward but you must follow the directions in the documentation exactly.

Help files are HTML but you need to place a couple of special tags in the page and name the files in a particular way.

It's all explained in the documentation.

like image 117
Rob Keniger Avatar answered Sep 22 '22 18:09

Rob Keniger


Today I've been facing the same problem. I found no up-to-date howto so here is one of my own. Help is nicely working with this Step by Step to create Apple Help in your Cocoa Xcode Application.

like image 26
PerfectGamesOnline.com Avatar answered Sep 19 '22 18:09

PerfectGamesOnline.com