After looking up information regarding loading offline resources into UIWebView, it looks like I'm out of luck for any easy solution.
I can load my main html file very easily by doing the following
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"tour" ofType:@"html"]isDirectory:NO]]];
The problem is that all the images/etc inside that are inside folders in my resources do not load. If it is in the top level like tour.html is, then it does load.
The paths simply do not behave like paths as if it was on a server.