vote up 2 vote down star

Hi I just picked up Obj-C and quite dislike its manual memory management.

I decide to go with its Garbage Collection, by adding

objc_startCollectorThread();//garbage collection

in my Main() and change the garbage collection value to [-fobjc-gc]

So is that all I need? So I can program "freely" like I do in Java/Python..etc?

flag

71% accept rate

4 Answers

vote up 4 vote down check

Yes you are right, but in case any iPhone programmer comes by and thinks "oh sweet!", please note that the iPhone doesn't support Garbage Collection yet (ever?). So this is the MacOS only solution.

link|flag
wow. thanks for telling me that --- as I was actually addressing the iPhone platform – ivanTheTerrible Mar 16 at 1:54
I kind of guessed that. Objective-C almosts equals iPhone for most people :) – Robert Gould Mar 16 at 2:21
vote up 0 vote down

Basically, yes. This is covered in Apple's documentation. You may also need occasional calls to

objc_clear_stack

But this is optional, to ensure stack retained object lifetimes are as short as needed.

link|flag
vote up 1 vote down

Note that -fobjc-gc means that you still use retain/release (when writing a Framework/library); you probably want -fobjc-gc-only if you want to get rid of the reference counting code completely.

link|flag
vote up 1 vote down

As other said, there is no garbage collection in iPhone.

If you are writing a Desktop Cocoa app, all you need is the -fobjc-gc-only flag, without the explicit objc_startCollectorThread() startup function.

link|flag

Your Answer

Get an OpenID
or

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