开发者

Objective-C Block type as return value

How do I write the following:

typedef void (^T)(void);开发者_开发技巧
T f() {
    return ^{};
}

without the typedef?


void (^f())(void) { 
  return ^{};
}

You'd better keep the typedef as the return type is not easy to understand in this form.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜