我正在尝试将 UIWebView 添加到我当前的 UIScrollView。UIWebView 应该访问本地 html 文件“index.html”。我在运行时遇到错误:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSURL initFileURLWithPath:]: nil string parameter'
这是我的代码:
UIWebView *webView = [[UIWebView alloc] initWithFrame:scrollViewFrame];
NSString *indexPath = [NSBundle pathForResource:@"index" ofType:@"html" inDirectory:@"Addition"];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:indexPath]]];
我确实有“添加”文件夹(不是组;从我的项目中的“添加”导入)。
提前谢谢...