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.
|
|
|
|
|
|
|
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. |
||
|
|
|
|
|
||||
|
|
|
In regards to C structs and memory management, Objective-C is no different from C: if you |
||
|
|
