A QLPreviewController, or Quick Look preview controller, provides a specialized view for previewing a file on the iOS platform.
1
vote
1answer
28 views
QLPreviewController crashing when tapping share button, internal consistency nib bundle error
I'm presenting a QLPreviewController modally. Everything works-- it pops up, shows the preview item and everything. However, once the share button is tapped, the app crashes on the device and in the ...
0
votes
0answers
41 views
Open large files through iPad app
I want to display preview of large key note files like 40MB size. My app gives memory warnings when open them using UIWebView. And can not use UIDocumentInteractionController or QLPreviewController ...
0
votes
0answers
75 views
QLPreviewController hide bottom toolbar
I use QLPreviewController in my app and want to hide bottom toolbar which allows to move through it's datasource items. Is it possible to do somehow?
I tried to search it as a subview of ...
1
vote
1answer
74 views
addSubview not calling QLPreviewControllerDataSource instances when offline
I have the following piece of code to add a QLPreviewController subview
{
QLPreviewController *preview = [[QLPreviewController alloc] init];
preview.delegate = self;
preview.dataSource = ...
0
votes
0answers
94 views
QLPreviewController VS UIWebView in terms of render efficience and memory usage
I am working on an iPad project which lets users browse local docs, ppts, pdfs and etc..
I have two options to display these files:
First, I can use UIWebView to display them;
Alternatively, I can ...
0
votes
0answers
131 views
QLPreviewController displays a PDF file, but the Activity View appears blank. No apps listed
I have an app that downloads a pdf file, which I then display using QLPreviewController. Tapping the "share" button in the top bar brings up an empty Activity View. It should contain "Print", "Open in ...
0
votes
1answer
81 views
QLPreviewController displaying PDF with incorrect fonts
I'm generating a PDF in an iPad app from a nib. The app uses custom fonts which display correctly in the nib in the app. When I view this saved PDF on my Mac, it also displays in the correct font. ...
0
votes
0answers
38 views
Open Camera Roll's photo with QLPreviewController
Is there a way to open "local files" (from camera roll) with QLPreviewController? These files are choosen previously with a UIImagePickerController. Thanks in advance!
0
votes
1answer
151 views
iOS QuickLook QLPreviewController can it display page number of DOC file
When viewing a PDF file, QuickView can show the individual pages. Can this be done with MS Office files too (DOC, PPT)? I want a way to know how many pages/slides are in the document and what page I ...
2
votes
2answers
182 views
Issues with email attachment, PDF and CSV
I'm working with PDF generation,it generated the PDF, viewed using QLPreviewController, all worked fine except mail forwarding, I have two attachments of type .pdf and .csv. I have the following ...
0
votes
1answer
80 views
issue on image drawing in pdf page- objective c
I am working on pdf creation right now, everything works fine except image drawing, it draws image's upper left corner only; with extra zoomed. But it works on simulator,code shows below;
UIImage ...
0
votes
1answer
146 views
can't remove navigation item in QLPreviewController in iOS 6
i subclassed QLPreviewController and used
[[self navigationItem] setRightBarButtonItem:nil];
but the navigationItem is only removed in iOS 5, not iOS6
0
votes
0answers
102 views
QuickLook, remove all toolbar buttons except the done button
I am using Quicklook to show some PDF files, the user needs to just see the file and then click done. the default UI gives more options like the copy or print email.
Also the UI shows arrows next to ...
2
votes
1answer
139 views
Pdf from the web show with QLPreviewController
I try to show with QlPreviewController a pdf from internet url without download it.
This is my code:
NSURL* url2 = [NSURL URLWithString:@"http://wwww.myweb.com/files/terms_en.pdf"];
// Check if ...
0
votes
0answers
95 views
QLPreviewController not showing actions in iOS
For a particular .zip file QLPreviewController is not presenting action sheet when action button is tapped.
That file opens perfectly in web GMail and native Mail app.
Thanks.
1
vote
0answers
77 views
Display an ALAsset using QLPreviewController
I'm wanting to use QLPreviewController to display ALAssets from the Photo Stream
QLPreviewController needs an NSURL to display the item
This works great when it is a File URL such as
...
0
votes
1answer
134 views
QLPreviewController with multiple Excell Sheets and documents iOS 6
I am experimenting with various document types being displayed with a QLPreviewController but ive come across an issue with QLPreviewController not being able to switch between excel sheets if i have ...
0
votes
0answers
126 views
quicklookd error: _UIViewServiceInterfaceErrorDomain error 1
Application has image preview feature, which used to work. Image is fetched from server, saved successfully on disk and then displayed using QLPreviewController. Now I get this error:
Failed to ...
0
votes
1answer
177 views
qlpreviewcontroller in ios6
By using qlpreviewcontroller getting the output in ios 4.3. i am showing the documents from the remote url.
In ios 6 it shows the empty view of the qlpreviewcontroller. Need to fix this issue . Any ...
1
vote
1answer
99 views
QLPreviewController ios6 get as UIImage
Is there any way to get a UIImage representation of the QLPreviewController's view in ios6?
1
vote
1answer
76 views
DataSource Methods not calling When subclassing QLPreviewController
I am using QLPreviewController for displaying documents, to remove the share button i am subclassing QLPreviewController like below,
@interface QuickLookViewController : QLPreviewController{
}
And ...
1
vote
1answer
157 views
QLPreviewController - Displaying issue
code snippets
NSMutableArray *samplepdf = [[NSMutableArray alloc]initWithObjects:@"sam1.pdf",@"sam2.pdf",@"sam3.pdf",@"sam4.pdf", nil];
1) QLPreviewController *previewController = ...
0
votes
0answers
96 views
QLPreviewController not displaying files of documents directory
i have some files like text,xls,png,pdf in documents directory and all those are displaying on table view when i click on particular file its getting break when it reaches to
- ...
3
votes
3answers
265 views
Invalidating QLPreviewController “cache”
QLPreviewController seems to cache file contents based on the local file's URL. In my application, the file contents can be updated remotely and would cause the new contents to be downloaded.
If I ...
0
votes
1answer
191 views
How to display page scrubber with QLPreviewController in a subview
I am embedding a QLPreviewController in my own view controller by adding it as a child view controller like this (contentArea is a UIView property that determines which part of the screen the preview ...
0
votes
0answers
90 views
Error in my zoomControls.setIsZoomInEnabled(true)
I am trying to use zoom controls(zoom in and zoom out) in my surfaceChanged() method in my preview class. below is my code :
public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) ...
0
votes
0answers
344 views
QLPreviewController print button hiding /w addObserver
I want to add own button to QLPreviewController navigation bar.
I've been tryin to hide QLPreviewController's print button for a while now.
Solutions that tell me to subclass QLPreviewController and ...
1
vote
0answers
176 views
QLPreviewController is crashing in iOS5.1 while continuous zooming and scrolling of PDF
QLPreviewController in iOS 5.1 is crashing after scrolling and zooming the pdf shown in controller.
When I zoom and scroll continuously, it starts giving warning in log
Ignoring call to ...
1
vote
1answer
248 views
QLPreviewController not updating the previewItem in iOS6
i am saving file in document directory and loading it in - (id)previewController:(QLPreviewController *)previewController previewItemAtIndex:(NSInteger)idx with [NSURL fileURLWithPath:self.path];
...
1
vote
2answers
761 views
QLPreviewController hide print button in ios6
How can I hide the print button in QLPreviewController
In IOS5, this code works
QLPreviewController *previewController = [[QLPreviewController alloc] init];
previewController.dataSource = self;
...
0
votes
1answer
53 views
qlpreviewcontroller doesnt load mysql query
Why qlpreviewcontroller doesn´t load my pdf file if the path is a mysql query.
for example :
http://myweb.com/ios/download.php?upl_P=699
The file appears codificated.
Advanced thanks
4
votes
3answers
2k views
iOS 6.0 Quicklook QLPreviewController errors with: “Cannot find preview item for loaded proxy”
My application has been using the QLPreviewController to display files of all types and in iOS 5.x , it seemed to do so just fine.
Now, in iOS 6.0, I get an error and it shows the controller but ...
3
votes
1answer
1k views
iOS 6 UIGestures (Tap) stops working with QLPreviewController
Currently I'm using a QLPreviewController in a navigation controller. (pushViewController)
To hide the navigationbar I use a UITapGestureRecognizer. The user can show/hide the navigation bar by a ...
0
votes
1answer
159 views
iOS - QLPreviewController delay
I have an app that generates a PDF and displays it at the same time. As expected, there is about a 2-second delay between pressing the "Generate PDF" button and the QLPreviewController presenting the ...
8
votes
3answers
3k views
QLPreviewController not working in iOS 6
In iOS 6 the QLPreviewController no longer loads a PDF from a URL. It works fine in iOS 5. I have implemented the QLPreviewControllerDataSource methods as documented here.
#pragma mark - ...
1
vote
1answer
248 views
Allow Rotation for QLPreviewController independent of parent View
my app doesn't support rotation. But I want to present a QLPreviewController that supports rotation.
I present the QLPreviewController like this:
[self presentModalViewController:thePrevController ...
9
votes
4answers
2k views
Custom navigationItem button with QLPreviewController in iOS6
my goal is to use QLPreviewController in my iPad application for iOS6, using my custom Action item button in the top toolbar.
I had solution until iOS5.1. I used a class that extends ...
7
votes
3answers
1k views
iOS 6 UIGestures (Swipe) stops working with QLPreviewController
In iOS 6 beta 4 and iOS 5.1.1 I have had left/right swipes allowing users to swipe between different QLPreviewControllers, hosted in a UIViewController.
In the released version of iOS 6 the swipes ...
5
votes
1answer
214 views
iOS Document Reviewer like Image browser
I know you can use QLPreviewController to preview a document, but has anyone got a tidy solution to enable gestures (swipes right:left) and preserve the document zoom / navigation.
It has been ...
0
votes
0answers
345 views
QLPreviewController not opening downloaded file
I'm trying to preview a downloaded file to system and the program crashes when performing the method called previewController:previewItemAtIndex:. From what I assumed is that is releasing the ...
0
votes
0answers
258 views
How to make Qlpreviewcontroller “Open in…” action sheet open in landscape orientation
We are using QLPreviewController to show PDF files in our iOS 5.0+ App.
It works fine in both Portrait and Landscape orientations.
However, I have noticed a peculiar behavior.
The second level ...
2
votes
2answers
250 views
Open a file without extension with QLPreviewController or UIDocumentInteractionController
Is there a way to open a file with QLPreviewController or UIDocumentInteractionController, knowing its UTI, but without a file extension in the NSURL? Thanks for your help!
0
votes
1answer
943 views
pushViewController doesn't seem to work with storyboard and QLPreviewController
When trying to implement a dynamic table (using code) with a storyboard tableviewcontroller, the detail view fails to get pushed when the following code is executed.
[[self navigationController] ...
2
votes
3answers
460 views
Using a QLPreviewController/UIWebView to preview Word documents which have merge fields
We are currently working on an iPad application which will have the following functionality:
User provides credentials, logs in.
Set of tasks are retrieved via a web service, which contain base64 ...
0
votes
0answers
94 views
Open a document's x .th page using QLPreviewController
Is there any reliable way to open a document's x .th page using QLPreviewController? (x is a number)
I want to give the opportunity to my users to open a document on the page that they have ...
0
votes
1answer
570 views
QLPreviewController only shows a single file
I am using a QLPreviewController to display a set of files. However, it only shows the first one and I can't seem to swipe or do anything to show the second. What am I doing wrong? Do I have to set it ...
1
vote
1answer
322 views
Quicklook/QLPreviewController shows a blank page. Gives a warning about framework symbols not found
I'm trying to preview images and other files from the app's documents folder. I have implemented Quicklook in my App, and it looks like it's launching, but it pops up with a blank screen and logs the ...
0
votes
0answers
196 views
Add a Button to PDF Page of QLPreviewController
Is it possible to add a button onto a particular page of a PDF document being viewed in a QLPreviewController. I know I can use CGPDFDocument classes to do that. But there is so much in UI that ...
0
votes
2answers
320 views
Generate document thumbnails
I am trying to display a grid of documents (saved in the documents directory) but I don't know how to generate the thumbnails for the documents. The documents can be anything that a ...
1
vote
0answers
238 views
How to correctly dispose QLPreviewController?
I'm using QLPreviewController to preview files.
But when I open big files memory grows and don't disposing.
Ex: iPhone 4s, open 6 Mb txt and 5Mb txt after - app will freeze or crash. Look into ...

