Objective-C:类别中的实例变量
我只是问是否可以通过类别添加实例变量。我的特殊问题是,我需要向 ASIHTTPRequest 对象添加 NSIndexPath 属性,但原则上我不想子类化 ASIHTTPRequest 。
我有什么替代方案吗?
感谢您的回答, 基督教
I am just asking whether it was possible to add an instance variable via a category. My special problem is, that I need to add an NSIndexPath property to an ASIHTTPRequest object but I don't wanna subclass the ASIHTTPRequest as a matter of principle.
Do I have any kind of alternative?
Thanks for your answers,
Christian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
类别不能声明额外的实例变量,但从 OS X 10.6 和 iOS 3.1 开始,您可以使用 关联引用。
您可以使用关联引用来模拟向现有类添加对象实例变量。使用关联引用,您可以向对象添加存储,而无需修改类声明。这是通过 objc_setAssociatedObject 和 objc_getAssociatedObject 完成的。如果将这些调用包装在属性的自定义 getter 和 setter 中,则可以伪造 ivar。
看看这个 帖子< /a> 作者:Ole Begemann。
A category can not declare additional instance variables but since OS X 10.6 and iOS 3.1 you can work around this with associative references.
You can use associative references to simulate the addition of object instance variables to an existing class. Using associative references, you can add storage to an object without modifying the class declaration. This is done via
objc_setAssociatedObject
andobjc_getAssociatedObject
. If you wrap these calls in a property’s custom getter and setter, you can fake an ivar.Have a look at this post by Ole Begemann.