I am writing a singleton that will be instantiated in the AppDelegate, but I don't need a reference from AD to it. It is a controller reacting to app state changes.

Since it's not sitting on the main reference tree, will it be auto-released on the next pass (or however it's called when auto-releasing of objects occurs)?

有帮助吗?

解决方案

As Neil Daniels pointed out, I am assigning the singleton instance to a static var, which should preserve the object from being released.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top