I used UIWebView for this kind of thing.
I write out the help in HTML, including images, if necessary, and then load it into a UIWebView. It is quite flexible in terms of layout and quite trivial to implement:
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"Instructions" ofType:@"html"] isDirectory:NO]]];
Just add the Instructions.html file to your application and you will be fine.
Pengone
source share