I have an instance of an object "myObject" that has a few UIImage objects as properties. After I access these properties the first time I really don't need them any more.
Can I do a release on the instance's UIImage properties before the instance itself is released, or will this over-release the UIImage properties later when the "myObject" dealloc releases them also?