If I use malloc along with Automatic Reference Counting, do I still have to manually free the memory?
int a[100];
int *b = malloc(sizeof(int) * 100);
free(b);
|
If I use malloc along with Automatic Reference Counting, do I still have to manually free the memory?
|
|||
|
|
|
Yes, you have to code the call to
There is no way around writing that call to |
|||||||||
|
|
Yes. ARC only applies to Objective-C instances, and does not apply to |
|||||||||||
|