GeRyCh
GeRyCh

Reputation: 1628

Singleton properties memory management

What attribute better appropriates to singleton's properties? As I know singleton never deallocated, but I still have to retain its' properties or assign it's more correctly?

Upvotes: 4

Views: 128

Answers (1)

James Eichele
James Eichele

Reputation: 119144

Your best bet is to retain and release all of your singleton's properties exactly the same way that you would for a non-singleton.

This will make things much easier to maintain, especially if one day you (or someone else) have to convert this singleton class into a non-singleton class.

Upvotes: 2

Related Questions