2017-05-05 41 views
0

在我的應用程序中,我下載了各種格式的文件。我試圖讓UIDocumentInteractionController獲取可以打開這種格式的應用程序。問題是UIDocumentInteractionController不起作用。這是我的代碼:UIDocumentInteractionController不起作用

func loadArchiveAtIndex(sender: NSNotification){ 
     let itemIndex = sender.userInfo!["index"] as! Int 
     let archiveKey = sender.userInfo!["downloadKey"] as! String 

     self.downloadingItens.append(itemIndex) 
     print(archiveKey) 

     let qualityOfServiceClass = QOS_CLASS_BACKGROUND 
     let backgroundQueue = dispatch_get_global_queue(qualityOfServiceClass, 0) 
     dispatch_async(backgroundQueue, { 

      SQLiteDataController().getTokenSincronismo({ 
       (Valido, Retorno, Token, Tipo) -> Void in 
       if Valido == true{ 
        switch Retorno { 
        case 9: // Retorno Válido 
         print(Token) 

         let params = [ 
          "tokenSincronizacao":"\(Token)", 
          "chaveProdutoBiblioteca":"\(archiveKey)" 
         ] 
         Alamofire.request(.GET, "\(_URLPREFIX)/ObtemProdutoBiblioteca", parameters: params).responseJSON { (response) in 
          if response.result.isFailure { 
           print(response.result.error) 
          } else { 
           let result = response.result.value 
           if let archive = result?["ProdutoBiblioteca"] as? NSDictionary{ 
            let bytes = archive.objectForKey("Arquivo") as! String 
            let name = archive.objectForKey("NomeArquivo") as! String 
            let data = NSData.init(base64EncodedString: bytes, options: .IgnoreUnknownCharacters) 
            let url = NSURL.init(string: name.lowercaseString) 
            data?.writeToURL(url!, atomically: true) 

            let documents = try! NSFileManager.defaultManager().URLForDirectory(.DocumentDirectory, inDomain: .UserDomainMask, appropriateForURL: nil, create: false) 
            let fileURL = documents.URLByAppendingPathComponent((name.lowercaseString)) 
            print(fileURL) 

            let dic = UIDocumentInteractionController.init(URL: fileURL!) 
            dic.delegate = self 
            dic.presentPreviewAnimated(true) 
// 
            dispatch_async(dispatch_get_main_queue(), {() -> Void in 
             var arrayIndex = 0 
             for item in self.downloadingItens { 
              let i = item 
              if i == itemIndex { 
               self.downloadingItens.removeAtIndex(arrayIndex) 
               NSNotificationCenter.defaultCenter().postNotificationName("reloadTable", object: nil, userInfo: ["itens":self.downloadingItens]) 
               break 
              } 
              arrayIndex = arrayIndex + 1 
             } 
            }) 

           } 
          } 
         } 

         break 
        default: 
         self.showError("Atenção", message: "Não foi Possivel Processar a sua Solicitação") 
         break 
        } 
       }else{ 
        self.showError("Atenção", message: "Não foi Possivel Processar a sua Solicitação") 
       } 
       }, sincFull:true) 
     }) 
    } 

    func documentInteractionControllerViewForPreview(controller: UIDocumentInteractionController) -> UIView? { 
      return self.view 
     } 

我在做什麼錯?

+0

你願意張貼滿級給一點更多的環境? –

+0

我編輯了代碼 – breno

+0

雖然這些功能類是什麼類? –

回答

1

您需要呈現主線程中的視圖。

相反的:

let dic = UIDocumentInteractionController.init(URL: fileURL!) 
dic.delegate = self 
dic.presentPreviewAnimated(true) 

嘗試:

dispatch_async(dispatch_get_main_queue(), {() -> Void in 
    let dic = UIDocumentInteractionController.init(URL: fileURL!) 
    dic.delegate = self 
    dic.presentPreviewAnimated(true)          
}) 
相關問題