Objective-C:类别中的实例变量

发布于 2024-11-10 06:15:03 字数 140 浏览 0 评论 0原文

我只是问是否可以通过类别添加实例变量。我的特殊问题是,我需要向 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冰火雁神 2024-11-17 06:15:03

类别不能声明额外的实例变量,但从 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 and objc_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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文