Reputation: 4963
I've checked out Apple's Quick Look Programming Guide: Introduction to Quick Look page in the Mac Dev Center, but as a more of a science programmer rather than an Apple programmer, it is a little over my head (but I could get through it in a weekend if I bash my head against it long enough).
Does anyone know of a good basic Quick Look Generators tutorial that is simple enough for someone with only very modest experience with Xcode?
For those that are curious, I have a filetype called .evt
that has an xml header and then binary info after the header. I'm trying to write a generator to display the xml header. There's no application bundle that it belongs to. Thanks!
Upvotes: 2
Views: 1436
Reputation: 11594
You might want to start with looking at sample code. Some people learn faster from seeing an example. Here's a generator example:
https://developer.apple.com/library/content/samplecode/QuickLookSketch/Introduction/Intro.html
Upvotes: 2