iPad/iPhone 中的 @dynamic 是什么
我只是想知道 Objective-C 中的 @dynamic 是什么意思以及它是如何工作的。请帮忙
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我只是想知道 Objective-C 中的 @dynamic 是什么意思以及它是如何工作的。请帮忙
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
@dynamic 意味着您将在运行时动态地提供这些方法的实现。
http://developer.apple.com/library/mac/# Documentation/Cocoa/Conceptual/ObjCRuntimeGuide/Articles/ocrtDynamicResolution.html
包含所有详细信息,但基本上使用 @dynamic 意味着您承诺在运行时提供属性承诺方法的实现。
特别是看这里;
http://developer.apple.com/library /mac/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html
有关如何构造动态方法并将其放入运行时的示例。
Core Data 使用此机制来提供访问器。一旦你深入研究它,它就非常酷了:)
顺便说一句,ObjC 中的元编程不适合胆小的人,在你理解它之前不要发布它,否则你的用户将遭受痛苦。
@dynamic means that you will provide an implementation of those methods dynamically at run time.
http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/ObjCRuntimeGuide/Articles/ocrtDynamicResolution.html
has all the details, but basically using @dynamic means that you promise to provide implementations for the property promised methods at runtime.
In particular look here;
http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html
for an example of how you'd construct your dynamic method and place it into the runtime.
Core Data uses this mechanism to provide the accessors. It's quite amazingly cool, once you dig into it :)
And as a side note, meta-programming in ObjC is not for the faint of heart, don't ship it till you grok it, otherwise your users will suffer.
我引用苹果的书Objective-C 编程语言:
您可以找到 pdf 副本 此处。
I am quoting Apple's book The Objective-C Programming Language:
You can find a pdf copy here.
使用 @dynamic 要求您自己提供 getter/setter 方法。
相反,@synthesize 会为您创建 getter/setter 方法。
Using @dynamic requires that you provide getter/setter methods yourself.
Instead @synthesize creates the getter/setter methods for you.