0

我只是为 iOS 制作了一个文件浏览器,我只需要知道如何在 UIWebview 中打开任何类型的文件。我认为 webview 可以打开任何类型的文件,那是因为我选择使用 UIWebView 直接在应用程序中查看文件。现在我的问题。

如何以编程方式切换到同一 UIStoryBoard 中的 UIViewController 并显示文件?文件 URL 存储在一个名为path.

这就是我的票价,我只需要添加文件查看器。在此处输入图像描述

有人能帮我吗?

4

1 回答 1

0
-(void) displayFile:(NSString*)fileName
{
  NSError *error = nil;
  NSString *documentsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,   NSUserDomainMask, YES) objectAtIndex:0]; 
  TO get the filename
  NSString *folderPath = [documentsDirectory stringByAppendingPathComponent:fileName];  

  if (![[NSFileManager defaultManager] fileExistsAtPath:folderPath])  //Optionally check if   folder already hasn't existed.
  {
   // do something
  }
} 

希望这可以帮助你...

于 2013-06-12T17:52:02.053 回答