Can you please write for me a block which conforms to this definition: (BOOL(^)(id))block
.
The closest I have gotten is:
typedef BOOL (^birds)(MyObject*);
birds c = ^(MyObject* p){ return (BOO开发者_如何学运维L)[p.something boolValue]; };
But it seems passing this c
in a message who wants (BOOL(^)(id))block
is a no go.
if a Block BOOL (^block)(id)
is expected you need to pass such a block and not a BOOL (^block)(MyObject *)
.
So try this:
typedef BOOL (^birds)(id);
birds c = ^(id pp) { MyObject *p = (MyObject *) pp; return [p.something boolValue]; };
精彩评论