I have HTML files that I want to download locally. I have included the files in the resource folder in Xcode. I'm not sure which syntax loads them.
This is the code that I use to connect to Google.
NSString * urlAddress=@ "http\\someurl"; NSURL *url = [NSURL URLWithString:urlAddress]; NSURLRequest *requestObj = [NSURLRequest requestWithURL:url]; [webHelpView loadRequest:requestObj];
Can someone provide an example where the HTML file is loaded locally.
Thanks in advance.
source share