vote up 1 vote down star

Simple question - do i need to free or release structs. My reason for asking is that I'm use a NSInvocation and the SEL type is a struct. Just want to know if I need to release it. Thanks.

flag

3 Answers

vote up 6 vote down check

In Objective-C and C in general, if something is not a pointer to somewhere else in memory and the whole thing is allocated on stack, you won't need to free it. It'll get freed as soon as the stack pointer is adjusted at the end of function.

link|flag
vote up 4 vote down

SEL should be treated as an opaque type (it's char * on the 32-bit runtime) and almost every use will be a static instance (@selector()) or a "temporary" variable (NSSelectorFromString()), neither of which needs freeing because you didn't allocate it.

link|flag
Being a char* is a implementation detail. An Objective-C implementation might choose to internally implement it with a simple integer or any mechanism it prefers. – Mehrdad Aug 19 at 19:28
That's why I said it's an opaque type. I used ‘char *‘ as an example of when it isn't a struct. – Graham Lee Aug 19 at 22:37
vote up 1 vote down

In regards to C structs and memory management, Objective-C is no different from C: if you malloc() it, you should free() it (at some point).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.