我在主包资源路径中有 PHP 文件。我需要从我的 UIViewcontoller 调用该文件。但是文件没有调用。
代码:
NSString *pathToBundle = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:pathToBundle];
NSString *htmlFile = [[NSBundle mainBundle] pathForResource:@"nav" ofType:@"php"];
NSString *htmlString = [NSString stringWithContentsOfFile:htmlFile encoding:NSUTF8StringEncoding error:nil];
//CGRect fullScreenRect=[[UIScreen mainScreen]applicationFrame];
web=[[UIWebView alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];
[web loadHTMLString:htmlString baseURL:baseURL];