As the title says, suppose I instantiate an UIImage object with imageNamed:
.. this creates and returns a pointer to an autocached UIImage object, correct?
What happens if the frameworks decides that its cache needs to be purged (for whatever reason, though most likely running low on memory) ? Do I just get stuck with a dead pointer?
edit: The reason I ask, is not that I plan to use imageName, but rather am duplicating its core functionality in my own resource management class.