Hi brianr
here is the solution to your question, this will enable you to load your own html file into the
UIWebView
Code:
NSBundle *bundle = [NSBundle mainBundle];
NSString *path = [bundle bundlePath];
NSString *fullPath = [NSBundle pathForResource:@"File Name Goes here, without file type i.e (hello)" ofType:@"file type goes here with no period i.e (html)" inDirectory:path];
[NAME OF UIWebView loadRequest:[NSURLRequestrequestWithURL:[NSURLfileURLWithPath:fullPath]]];
To use this just copy and paste this all either in a button instance or any function.
It will look for the html file or other file type within the xcode project, so remember to add it in

.
Hope this helps.
If you need any more help on this, don't hesitate to ask.
Safa