When I declare a NSOperationQueue member in a UIView subclass, operations send to it won't execute. When the queue is declared in the AppDelegate however the same operations are executed. Any ideas?
[EDIT] Ah, fixed it. Problem was my queue initialization was in the initWithFrame, which isn't called when it wakes from a nib. So annoying that these messages to a nil object disappear in void.
Thanks!