0

iOS 用のファイル ブラウザを作成しただけです。UIWebview で任意の種類のファイルを開く方法を知る必要があります。UIWebView を使用してアプリでファイルを直接表示することを選択したため、webview はあらゆる種類のファイルを開くことができると思います。今私の質問。

同じ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 に答える