iphone - Can you add an html file in the xcode groups folder and open it in a UIWebView? -


i want load html file on web view without having upload web. have file in groups folder in xcode. can open in webview?

just path resource, , tell webview load it. should similar you'd need.

[webview loadrequest:[nsurlrequest requestwithurl:[nsurl fileurlwithpath:[[nsbundle mainbundle] pathforresource:@"myhtmlpage" oftype:@"html"]isdirectory:no]]]; 

where webview iboutlet uiwebview


Comments