开发者

Monotouch: UIDocumentInteractionController, view documents (pdf, word, excel and so on) How to?

开发者 https://www.devze.com 2023-02-18 18:26 出处:网络
I have a question for you and I don\'t know to resolve it. I\'ll try to explain this scenario. 1) My iPad app conne开发者_如何学Ccts to a web server and can download documents.

I have a question for you and I don't know to resolve it. I'll try to explain this scenario.

1) My iPad app conne开发者_如何学Ccts to a web server and can download documents. 2) Once downloaded, it can open the document.

My questions are:

first, is it possible to download a stream (or something else) in the ipad? Do I have to save it as a temporany file?

second, how can I use the UIDocumentInteractionController to open that downloaded file?

Thank you in advance. Regards.

EDIT:

How it is possible to change the title for buttons of the preview document? By default, there is a button whose title is "Done". Is it possible to change its title or replace it with another one?

The code I'm using is the following:

public class UIDocumentInteractionControllerDelegateClass: UIDocumentInteractionControllerDelegate

public UIViewController FileViewController;
 public UIDocumentInteractionControllerDelegateClass (UIViewController parent)
 {
   FileController = parent;
 }

 public override UIViewController ViewControllerForPreview (UIDocumentInteractionController controller)
 {
   return FileViewController;    
 }

 public override UIView ViewForPreview (UIDocumentInteractionController controller)
 {
  return FileViewController.View;
 }
}


Get ready for some reading. :)

You can find the answer to the first question here. Answer to the second question here.

0

精彩评论

暂无评论...
验证码 换一张
取 消