What about QLSeamlessDocumentOpener

2012-11-25 Thread Gerriet M. Denkmann
What does this mean? What can I do to get rid of these warnings? [QL] QLError(): -[QLSeamlessDocumentOpener showWindow:contentFrame:withBlock:] should only be called in the main thread CoreAnimation: warning, deleted thread with uncommitted CATransaction; created by: 0 QuartzCore

Re: What about QLSeamlessDocumentOpener

2012-11-25 Thread Graham Cox
On 25/11/2012, at 10:21 PM, Gerriet M. Denkmann gerr...@mdenkmann.de wrote: What does this mean? What can I do to get rid of these warnings? Short answer: don't call -openUntitledDocument... on a thread other than main. [QL] QLError(): -[QLSeamlessDocumentOpener

dispatch queues are objects now .. right?

2012-11-25 Thread Roland King
I'm pretty sure that when I was watching the WWDC 2012 sessions, dispatch queues are now objects (since iOS6 and OS 10.7/10.8?) and as such I don't have to dispatch_retain() or release them and can just use them like any other object. But I can't find a reference in the documentation which

Re: What about QLSeamlessDocumentOpener

2012-11-25 Thread Gerriet M. Denkmann
On 25 Nov 2012, at 19:21, Graham Cox graham@bigpond.com wrote: On 25/11/2012, at 10:21 PM, Gerriet M. Denkmann gerr...@mdenkmann.de wrote: What does this mean? What can I do to get rid of these warnings? Short answer: don't call -openUntitledDocument... on a thread other than

Re: NSFileManager - Incompatible persistent store

2012-11-25 Thread Tom Miller
Hey Sean, Thank you! Though this didn't quite work. I'm getting an error response in the code telling me No visible @interface for 'NSFileManger' declares the selector 'createDirectoryAtURL:attributes'. Included in this message is the code im playing with,

Re: dispatch queues are objects now .. right?

2012-11-25 Thread Mike Abdullah
On 25 Nov 2012, at 13:38, Roland King r...@rols.org wrote: I'm pretty sure that when I was watching the WWDC 2012 sessions, dispatch queues are now objects (since iOS6 and OS 10.7/10.8?) and as such I don't have to dispatch_retain() or release them and can just use them like any other

Re: NSFileManager - Incompatible persistent store

2012-11-25 Thread Graham Cox
On 26/11/2012, at 9:44 AM, Tom Miller t...@pxlc.me wrote: Thank you! Though this didn't quite work. I'm getting an error response in the code telling me No visible @interface for 'NSFileManger' declares the selector 'createDirectoryAtURL:attributes'. Included in this message is the code im

Re: Tooltip with Custom bg color/image and text color

2012-11-25 Thread Appa Rao Mulpuri
We are using the attached window concept where we need to display help info upon button click. I think we need to create Tracking rect and start the timer upon mouse entered into that rect and display the attached window after sometime to mimic the Tooltip behavior. I am just checking instead of