第一的,
+ (void)allOpenRequestsWithBlock:(void (^)(NSArray *requests, NSError *error))block
有人可以深入解释这种方法的语义是什么吗?什么是加号与减号。
有人可以解释 (void (^)(NSArray *requests, NSError *error)) 块吗?这是一个保留请求和错误的空块?
这行代码:
[[AFChangeRequestAPIClient sharedClient] getPath:@"example.json" parameters:[NSDictionary dictionaryWithObject:@"false" forKey:@"include_entities"] success:^(AFHTTPRequestOperation *operation, id JSON)
这是调用具有上述参数的get Path方法吗?字典仅通过 1 个键/值 include_entities/false 传递?成功块部分是什么意思?是返回值吗?
我基本上是在尝试理解 AFNetworking 框架,它似乎使用了我不熟悉的语法。
谢谢!艾伦