我正在使用XCode 9.4并移植到旧的iOS应用程序上,代码中有一段可以提取文件路径
NSString *filePath=[[NSBundle mainBundle]pathForResource:@"f1" ofType:@"html" inDirectory:@"my_dir"];
使用调试器进行观察显示:[App的完整路径] /AppName.app/my_dir/f1.html
因此,将其传递给旧的已弃用的UIWebView
并呈现了一些内容,现在我想使用以下命令将该文件的内容检索为字符串:
NSString* contents =[NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:&myErr];
但是它返回nil,myErr也为nil,这段代码是在做不允许做的事情还是什么原因?
预先感谢