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
On 25/11/2012, at 10:21 PM, "Gerriet M. Denkmann" 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
> showWindow:contentFrame:withBlock:] should
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 suppo
On 25 Nov 2012, at 19:21, Graham Cox wrote:
>
> On 25/11/2012, at 10:21 PM, "Gerriet M. Denkmann"
> 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.
>
You are right. I replaced:
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,
https://dl.dropbox.com/u/3783094/BlogDem
On 25 Nov 2012, at 13:38, Roland King 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 object. But I
On 26/11/2012, at 9:44 AM, Tom Miller 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 playing w
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