here i am trying for a application, when i click on the table view it will redirect to another page called details. there I have used a webview to dispaly the selected url value
try like this,take all the html file names in Array yourArray.
NSString *htmlFile = [[NSBundle mainBundle] pathForResource:[yourArray objectAtIndex:selectedIndex] ofType:@"html" inDirectory:nil];
NSString* htmlString = [NSString stringWithContentsOfFile:htmlFile encoding:NSUTF8StringEncoding error:nil];
[WebView loadHTMLString:htmlString baseURL:nil];