Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Objective-C, my favorite programming language, has a feature called @dynamic.

Google only lists results about dynamic typing.

I rarely see this in code and I don't understand what it is used for. Can anyone explain me this? Thanks.

share|improve this question
Meaning that those two questions are also duplicates of this one and eachother, making them interchangeable. I'll accept the answer and close this. :) – rightfold Jan 7 '11 at 3:06

1 Answer

up vote 12 down vote accepted

@dynamic means “my class will figure out how to respond to this at runtime.” Uses a runtime mechanism for an object to intercept messages it normally wouldn’t respond to. In the case where a Core Data db is used to store persistent data, NSManagedObject turns these into calls to -valueForKey: and -setValueForKey:.

Take a look at Lecture 12 (Fall 2010) of Stanford's iPhone development course.

share|improve this answer
But how can my code add properties to an object at runtime? – rightfold Jan 7 '11 at 2:22
check out <objc/runtime.h> and NSObject.h file – xhan Jan 7 '11 at 2:31
2  
@Time Machine: @dynamic doesn't necessarily mean the property will be added at run time, it just a way of saying to the compiler "I know I have declared the property but not implemented it in this class, but I know it will be there at run time". It could be as simple as the implementation is known to be provided by the super class. – JeremyP Jan 7 '11 at 8:49
@JeremyP I never said it does. I just asked how to do it. :) – rightfold Jan 7 '11 at 17:56
1  
@Time Machine: Sorry, I thought you were just asking because you couldn't see how to add properties at run time and therefore thought @dynamic is pointless. My point was that, yes there are ways to literally add properties at run time but also, it can be as simple as subclassing. – JeremyP Jan 10 '11 at 8:19

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.