如何在 Objective C 中将一个块作为参数传递给另一个块

发布于 2024-12-23 15:49:24 字数 304 浏览 2 评论 0原文

我正在尝试定义一个以块作为参数的块。

下面这行代码有什么问题?

id (^cacheResult)(NSString *, id(^)(void)) = ^(NSString *name, id(^)(void)block) {
    NSObject *item = nil;
    block();
    return item;
};

为什么编译器总是给出类似 Parameter name oblitedExpected ")" 的错误?

I'm trying to define a block that takes a block as an argument.

What's wrong with the following line of code?

id (^cacheResult)(NSString *, id(^)(void)) = ^(NSString *name, id(^)(void)block) {
    NSObject *item = nil;
    block();
    return item;
};

Why does the compiler keep giving errors like Parameter name omitted and Expected ")"?

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

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

发布评论

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

评论(3

知你几分 2024-12-30 15:49:24
id (^cacheResult)(NSString *, id(^)(void)) = ^(NSString *name, id(^block)(void)) {
    NSObject *item = nil;
    block();
    return item;
};

块的语法与函数指针类似。您必须在 ^ 之后声明块名称

id (^cacheResult)(NSString *, id(^)(void)) = ^(NSString *name, id(^block)(void)) {
    NSObject *item = nil;
    block();
    return item;
};

Blocks have similar syntax to function pointers. You have to declare block name after the ^

半岛未凉 2024-12-30 15:49:24

这就是发明 typedef 的原因。像这样嵌入函数指针或块类型是很痛苦的。试试这个:

typedef id (^ InnerBlock)(void);
typedef id (^ OuterBlock)(NSString *, InnerBlock);

它将使块类型的使用更容易阅读。 :)

This is why typedef was invented. Embedding function pointers or block types like this is a pain. Try this instead:

typedef id (^ InnerBlock)(void);
typedef id (^ OuterBlock)(NSString *, InnerBlock);

It'll make working with block types a lot easier to read. :)

有木有妳兜一样 2024-12-30 15:49:24

您可能指的是作业右侧的 id(^block)(void) 吗?

Did you possibly mean id(^block)(void) on the RHS of the assignment?

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