Do agent/controller objects (nothing is referring to them) get released (Objective-C, ARC)?

StackOverflow https://stackoverflow.com/questions/23077272

Frage

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)?

War es hilfreich?

Lösung

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

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top