将块存储在集合中

发布于 2024-10-21 16:10:00 字数 30 浏览 1 评论 0原文

是否可以直接将块存储在NSArray等集合中?

Is it possible to directly store a block in a collection such as NSArray?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

不如归去 2024-10-28 16:10:00

是的,块是有效的 Objective-C 对象,遵循 NSObject 的所有约定。只需进行复制/自动释放舞蹈:

[array addObject:[[block copy] autorelease]];

对于 ARC - 省略复制和自动释放调用:

[array addObject:block];

Yes, blocks are valid Objective-C objects, following all the conventions of NSObject. Just do the copy/autorelease dance:

[array addObject:[[block copy] autorelease]];

For ARC - omit the copy and autorelease calls:

[array addObject:block];
雨落□心尘 2024-10-28 16:10:00

无法弄清楚如何在 Eimantas 答案的评论线程中做出响应,但 -copy 是必要的,因为该块可能已在堆栈上创建。请参阅 bbum 关于该主题的帖子中的 2)。

Can't figure out how to respond in the comment thread on Eimantas' answer, but -copy is necessary because the block may have been created on the stack. See 2) in bbum's post on the topic.

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