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

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

Pregunta

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

¿Fue útil?

Solución

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top