Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know its a very basic question. Got some memory issues I need to clarify. Here is my doubt:

int *p = malloc (50); // will allocate 50 bytes and it is pointed by p.

// Freeing C pointer-->

free(p);

Objective-C pointers:

ClassAobject *objA = .... // allocated ClassAobject..

// Freeing obj-C pointer--->

objA = nil // Is it enough??? will it release all ivars memory properly..

what if the case, If I have some C pointers inside the objective C class? How to handle this in ARC

share|improve this question
1  
If you are using ARC you dont need to release any objects – Ranjit Feb 5 at 6:40
No need to assign nil also...? – Newbee Feb 5 at 6:40
If you don't, you need to retain/release objects, much like you did in C. Which do you use? – ATaylor Feb 5 at 6:40
3  
ARC = AutoRetainCount -> It counts the references to the object and collects those, who are not being pointed to any more. Meaning -> You HAVE to assign nil or any other reference, so the GC will take out the object you don't need any more. Compare to Java for that. – ATaylor Feb 5 at 6:41
1  
ARC (Automatic Reference Counting) doesnt collect references. It is an compiler feature that inserts all the needed retain/release/autorelease calls for you. There is also no GarabageCollector on iOS and the GC in OS X is going to die. @Newbee it is a good idea to assign nil to your pointer, but ARC will do all the memory management even if you don't assign nil. Your Object will receive a release or autorelease message when its scope is finished. – Pierre Feb 5 at 6:46
show 2 more comments

1 Answer

up vote 9 down vote accepted

The title doesn't reflect what you're asking. There's no difference between C pointers and "Objective-C pointers". Really they're just plain ol' C pointers.

What you're asking for is the difference between their correct usage. If a pointer points to an Objective-C object, then under MRC, you have to do

[obj release];

to decrease its reference count (which can potentially deallocate it). Under ARC, setting the pointer to nil is enough (as in your example).

share|improve this answer
what if the case, If I have some C pointers inside the objective C class, I should free it right? when I should do? – Newbee Feb 5 at 6:45
1  
@Newbee In the - (void)dealloc method of your class. Also, don't forget to call [super dealloc]; at the end. – H2CO3 Feb 5 at 6:46
Thanks for your reply.. It is clear.. :) – Newbee Feb 5 at 6:47
2  
@Newbee you should really read the apple docs or get a book for simple stuff like this. We aren't your personal teachers. – Richard J. Ross III Feb 5 at 6:48
2  
But after, he'll have to change his name... – ring0 Feb 5 at 6:49
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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