Summary
Macro
Decrements the reference count of a pointer by one. This macro also sets the pointer to NULL. Do not use when the pointer might be NULL; use NS_IF_RELEASE in those cases.
NS_RELEASE(foo)
is equal to
foo->Release(); foo = 0;
Syntax
NS_RELEASE(foo);