Questions tagged [uidocumentinteraction]

A document interaction controller, along with a delegate object, provides in-app support for managing user interactions with files in the local system

A document interaction controller, along with a delegate object, provides in-app support for managing user interactions with files in the local system. For example, an email program might use this class to allow the user to preview attachments and open them in other apps. Use this class to present an appropriate user interface for previewing, opening, copying, or printing a specified file.

More: UIDocumentInteractionController Class Reference

334 questions
0
votes
1 answer

Show UIDocumentInteractionController from share button in nav bar - iOS

In my project I'm using WSAssetPickerController. Despite the toolbar not working (not a huge issue), everything is working fine. I have added a share button in the view controller, but I can't seem to get the UIDocumentInteractionController to get…
ChrisOSX
  • 724
  • 2
  • 11
  • 28
0
votes
0 answers

Customise QLPreviewController

I am using UIDocumentInteractionController and QLFramework to preview videos from the Documents folder of my application. I want to customise the the upload button of QLPreviewController just like WhatsApp show a custom UIMenuAction sheet. Is…
user2955351
  • 273
  • 4
  • 18
0
votes
1 answer

How to use UIDocument in iOS for remote documents?

i want to display the pdf files as preview and display the PDF files in my app but pdfwhich i want to use are taking from the URL and display those pdf files in my document without using Web view but i want to display in UIDocumentation only. but…
0
votes
1 answer

How do I display pdf in iOS

I do not want to display a pdf from a webpage, I want the user to be able to import pdfs ,perhaps from ibooks, into my app and display them. If i download the pdf (via email or other sources) how do i navigate to the actual pdf file on my phone?…
CoderNinja
  • 571
  • 3
  • 7
  • 20
0
votes
2 answers

iOS open with specific apps

I'm trying to show apps from UIDocumentInteractionControllerDelegate , default apple apps like; sms, email or UIPasteBoard (Facebook and Twitter is optional) . Just like the similar of Dropbox app : How can I handle this kind of situation? I've…
efdalustaoglu
  • 168
  • 11
0
votes
0 answers

Share VCF file through Whatsapp and Other Apps iOS

I am developing an application that generates vcf files for the contacts. Now, I want to share that vcf file to others through whatsapp, or any other supported app that can share that vcf file. I used UIDocumentInteractionController but it is…
Ganesh
  • 1,059
  • 1
  • 10
  • 28
0
votes
1 answer

How to register support for text file to be opened by other apps?

How to register support for text file to be opened by other apps, having support for text file in iOS ?
Harish Suthar
  • 711
  • 1
  • 4
  • 14
0
votes
1 answer

UIDocumentInteractionController annotation property doesn't copy caption to presented application

Thanks to a couple other posts here , I've successfully be able to use the Instagram iPhone hooks to open Instagram and present it with a photo successfully from my application. (I've made my ViewController class a delegate of…
jesses.co.tt
  • 2,689
  • 1
  • 30
  • 49
0
votes
1 answer

How to change UIDocumentInteractionController preview screen?

We have a requirement to change UIDocumentInteractionController preview screen? Is it possible to change the rect of UIDocumentInteractionController? I want to open document preview in my custom view?
nitish
  • 109
  • 1
  • 8
0
votes
2 answers

Done button click of UIDocumentInteractionController

Hello AllI did search for this, but didn't get anything useful. I need to get "Done" button click action of UIDocumentInteractionController. Can anyone please guide me? I am making an app for iPhone & iPad both. Update:- I also need to hide "Share"…
Piyush
  • 158
  • 2
  • 14
0
votes
1 answer

Open image from ALAsset representation in default Photos app

How can I open an image obtained from the Assets Library in the default 'Photos' app on iPhone? Ideally this should work without temporally storing a second instance of the image in my app's document folder. I tried the following but there is no…
0
votes
1 answer

How to control list of apps displayed at "Open In" at iOS

As we know, at iOS, we could use UIDocumentInteractionController to display the "Open in" menu where a list of third party apps which could handle the document. User could pick one app to open the document at that app. We are looking for if we…
windfly2006
  • 1,703
  • 3
  • 25
  • 48
0
votes
1 answer

How to print PDF file already opened in QLPreviewController using print button?

I get binary array then convert it and save in Documents folder and then showed in QLPreviewController. I have seen the right button on the tool bar of QLPreviewController. I want to print that is in the preview right now. But when i tab error…
0
votes
1 answer

UIDocumentInterationController item option menu will not dismiss when click in the Navigation bar

Title: UIDocumentInteractionController dismissing the popup when clicking anywhere in the navigation bar. My code works find. It works well in my iPhone and iPad simulator for the most part. It does what I want., however, my issue is dismissing the…
rettahdam
  • 1
  • 3
0
votes
1 answer

Objective C: Popover Dismissed Without Opening the File to Another App

In the app that I am working I have files to be downloaded from a server and store it locally in the app's sandbox, then open it in iBooks using UIDocumentInteractionController. I have done it all the downloading, saving, and opening it to iBooks.…