次のようなブロックを宣言しています。
void (^callback)(NSString *_accessToken) = ^{
// do something interesting with _accessToken
}
しかし、XCodeは私に言い続けます
Incompatible block pointer types initializing void(^__strong)(NSString *__strong)
with an expression of type void (^)(void)
私は何を間違っていますか?