qlpreviewcontroller Questions
1
I need to use a QLPreviewController in order to open PDF and JPEG documents into my app. I implemented it in this way:
-(void)openQuickLook{
QLPreviewController *preview = [[QLPreviewController a...
Resendez asked 10/4, 2017 at 8:40
10
I'm using the below code to use QLPreviewcontroller to show some documents in my app,
let ql = QLPreviewController()
ql.dataSource = self
//ql.navigationItem.rightBarButtonItems = nil
ql.navigatio...
Regional asked 28/3, 2016 at 6:14
9
Can anyone tell me how to remove the QLPreviewController print button? Also would like to disable cut/paste/copy.
Gausman asked 2/8, 2011 at 20:32
5
Can I customize the color of the navigation bar in the QlPreviewController controller?
I have tried following
[[UINavigationBar appearanceWhenContainedIn: [QLPreviewController class], nil] setBar...
Klong asked 15/9, 2017 at 12:31
0
I am trying to debug my Quick Look Extension target (Preview) for macOS in Xcode and, although I have specified a different executable (qlmanage), it keeps launching the Quick Look Simulator every ...
Ingesta asked 2/7, 2020 at 16:48
2
I am trying to show an AR content with QLPreviewController. Everything works fine except the lighting. If I preview the file using Xcode or macOS's quick look the lighting is natural, but when I pr...
Denumerable asked 15/11, 2018 at 20:1
4
Solved
i have set the custom color to navigation bar of QLPreviewController
but the problem is that i want dark color of navigation bar in QLPreviewController
even i have set the navigation bar translucen...
Silversmith asked 16/11, 2013 at 5:45
8
I am subclassing QLPreviewController in my application and using the following code.
QLPreviewControllerSubClass* preview = [[QLPreviewControllerSubClass alloc] init];
[self presentViewController...
Malapropos asked 9/4, 2014 at 4:58
1
As far as I understand there is still no equivalent component to iOS's QLPreviewController in Android. I'm looking for an easy way to be able to integrate display of media files (images, movies, PD...
Hemo asked 23/3, 2016 at 13:55
9
Solved
I am trying to preview pdf file in QLPreviewController and using the below code. It works fine on iOS7 and for other type of files (JPG/PNG) on iOS8 as well but when I try to open pdf it shows blan...
Deponent asked 14/8, 2014 at 11:48
4
Solved
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 - QLPreview...
Tamandua asked 28/9, 2012 at 15:57
0
I'm failed to hide the right thumbnail bar on tap when I add QLPreviewController as a childviewcontroller. I'm using the following code:
#import <QuickLook/QuickLook.h>
-(void)viewDidLoad
{...
Faqir asked 27/10, 2017 at 11:40
5
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 QLPrevie...
Nutmeg asked 4/4, 2013 at 12:54
2
Solved
Is it possible to add QLPreviewController to UIView as sub view.
I tried like this
[self.view addSubview:previewViewController.view]
I also called reloadData
[previewViewController reloadDa...
Hunley asked 13/12, 2011 at 17:24
4
Solved
I have a table view. On 3D Touch I preview a pdf in a QLPreviewController. The peek and the pop work as intended.
For some reason I cannot get the preview controller view to slide up and show my a...
Atonsah asked 17/10, 2015 at 12:37
1
Currently I am testing my current version in iOS10. I am using Xcode 8 beta 6 for testing. Here Quicklook/QLPreviewController delegate methods are not calling. This code set had been worked with XC...
Dogcatcher asked 31/8, 2016 at 1:19
3
Solved
I have integrated QLPreviewController and UIDocumentInteractionController in my app, and it is working fine.
The only problem is- I want to configure the bottom toolbar, I want to remove the defaul...
Shoelace asked 2/10, 2013 at 18:49
1
Status bar is initially hidden in Info.plist with "Status bar is initially hidden" set to YES and "View controller-based status bar appearance" set to NO.
But when I present a QlPreviewController,...
Besetting asked 28/2, 2014 at 13:16
5
Solved
I have seen this kind of question a lot on the internet but it seems no one really knows the answer?
I am using QLPreviewController for displaying PDF documents. I first used a UIWebView but I was...
Cankerworm asked 5/8, 2011 at 13:30
4
Solved
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 ...
Glosso asked 3/10, 2012 at 16:34
6
Solved
I just trying to get to QLPreviewController.view. Indeed, I want to catch a tap event on its view to show/hide toolbar etc. I am trying:
QLPreviewController* qlpc = [QLPreviewController new];
qlp...
Assiniboine asked 22/5, 2011 at 21:50
2
Solved
Ok, so what I am trying to do is create a Document Viewer that is similar this picture:
Basically what should happen is, when the screen is tapped anywhere, the top and bottom bar will appear. Ta...
Hammond asked 15/5, 2012 at 17:19
0
I am using a QLPreviewController to display PDF files, each page of which is a spread of a magazine. The default zoom of the QLPreview is to fill the screen by width. In portrait mode, the front an...
Midgett asked 16/1, 2014 at 16:10
1
I am trying to display a file using QLPreviewController. The QL view displays correctly (is pushed on top of my Navigation Controller) but the content is blank. However, no errors are displayed and...
Bevbevan asked 4/11, 2011 at 13:8
5
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 QLPreviewContr...
Banger asked 24/9, 2012 at 15:48
1 Next >
© 2022 - 2024 — McMap. All rights reserved.