Questions tagged [quicklook]

QuickLook an objective-c framework used in iOS and MacOS application development typically for previews.

324 questions
1
vote
1 answer

QuickLook for images in iPhone

I am downloading a image knowing the url of the image . Now how can i view this image using a quick look frame work. I am using the following codes to download. UIImage *image = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL …
rashii
  • 500
  • 7
  • 17
1
vote
0 answers

iOS QuickLook framework alternative

I'm developing client for http://sparkleshare.org, OSS Dropbox alternative. For previewing of files I'm using QuickLook framework, but it seems it previews only PDF (maybe I do something wrong). What uses iOS dropbox client for previewing files? Is…
darvin
  • 529
  • 5
  • 17
1
vote
2 answers

Implementing Quick Look QLPreviewController Animations

I am trying to implement the following method of QLPreviewControllerDelegate and the method requires me to return the view that shows my Preview Item before the Preview Controller; this should be self.view however I am getting the following compile…
Mark Stratmann
  • 1,612
  • 14
  • 21
1
vote
0 answers

How to display document image preview in iOS app?

I need to display document image preview. I have smth like messenger app and I want the user can see UIImage preview before opening document. Documents can be in doc, docx, docm, pptx, ppt, rtf formats. I tried to use QuickLook library it can open…
ziman
  • 21
  • 1
1
vote
1 answer

How to hide Title Menu on Navigationbar in iOS16

I'm using QuickLook and I did hide share button before, But on iOS 16, there is a new arrow within the title. it contents share button and save to file etc... I want to hide the whole menu or all buttons I didn't know how to hide it I tried to…
Basel
  • 550
  • 8
  • 21
1
vote
1 answer

No swipe-to-dismiss for QuickLook when presented using SwiftUI vs. UIKit

I am using QLPreviewController to display images in my SwiftUI app. However, I've noticed that the swipe-to-dismiss that comes built-in when presenting QLPreviewController modally in UIKit doesn't work when presenting it using .fullScreenCover in…
Greg G
  • 461
  • 4
  • 14
1
vote
0 answers

How to embedd QuickLook files inside a view macOS

This is for a macOS app, here's my code for previewing PDF files using Quicklook: import Quicklook struct ContentView: View { @State var url: URL? var body: some View { VStack { Button("Open"){ …
swiftnoob
  • 303
  • 1
  • 5
  • 21
1
vote
0 answers

How do I add .do (Stata) file extension to QuickLook in Mac OS 13?

i got the problem that since the current update of MacOS to 13, the Quicklook does not support .do file from Stata anymore. It worked so far super fine till now. I tried to add and altering QLStephen as well as QLColorCode. First is used: mdls -name…
KonstiR
  • 21
  • 2
1
vote
1 answer

Return expression of type '()' does not conform to 'QLPreviewItem' QuickLook Swift

My network manager returns an URL. Inside this URL I have a pdf document and I want to show it in a quick look. But I am getting an error. Plus I could not figure out how to configure this quicklook in a proper way. I have tried integrating…
Mert Köksal
  • 817
  • 1
  • 7
  • 26
1
vote
0 answers

Creating a QuickLook plug-in for Blender 3.0 files in Xcode 13

I'm trying to create a QuickLook plugin to review Blender 3.0 files from Finder. This is an important feature of Blender in 2.8, but since Blender upgraded to 3.0 all previews are gone. Due to I need to organize files and find files with QuickLook…
CJ Yen
  • 43
  • 1
  • 6
1
vote
1 answer

UIDocumentInteractionController crashes on device for large images

I use UIDocumentInteractionController for quick look on iPad (4.3.3). NSURL *url = [NSURL fileURLWithPath:path]; self.doc = [UIDocumentInteractionController interactionControllerWithURL:url]; self.doc.delegate = self; [self.doc…
vokilam
  • 10,153
  • 3
  • 45
  • 56
1
vote
0 answers

Adding an Google Pay Button or a Custom Action in Google Scene Viewer

do you know if there is any way how to implement Google Pay Button, go to cart button or custom action to Google Scene Viewer? Basically I am interested if there is something similar like in Apple Quick Look …
1
vote
1 answer

QLPreviewControllerDelegate's method didSaveEditedCopyOf gets called with URL that has no content

I'm using QLPreviewController for displaying different kind of documents. All this documents can be edited by returning QLPreviewItemEditingMode.createCopy or QLPreviewItemEditingMode.updateContents to previewController(_:editingModeFor:) instance…
lacefarin
  • 1,018
  • 2
  • 13
  • 18
1
vote
0 answers

QuickLook Plugin UTI on Big Sur not working properly

I have a strange issue with a QuickLook generator I'm building for Google Drive. The "*.gdoc" files on my computer have a UTI of be.gdoc.quicklook as shown by running mdls -name kMDItemContentType /Volumes/GoogleDrive/My\ Drive/*.gdocin terminal And…
user924387
  • 123
  • 3
  • 12
1
vote
0 answers

how to hide top item in QLPreviewPanel in MacOS Swift

I have two questions about the QLPreviewPanel in macOS project(swiftUI Framework) first, i want to hide navigation item in QLPreviewPanel here is my code class QLCoordinator: NSViewController, QLPreviewPanelDataSource { var url:NSURL =…
Jun
  • 41
  • 4