我在主捆绑资源路径中有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];
答案 0 :(得分:0)
由于PHP是服务器端语言,因此您无法像这样运行它,除非您的设备中运行了PHP_Server_for_iOS。
我不知道是否存在任何此类PHP发行版,抱歉。
祝福,