我从github下载了 Drupal-iOS-SDK, 还从这里下载了 AFNetworking 文件。
然后我将文件添加到我的项目中,但它显示了一个奇怪的错误
不兼容的块指针类型将“void (^)(NSInteger, NSInteger, NSInteger)”发送到“void (^)(NSInteger, long long, long long)”类型的参数
对于这段代码:
AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
[operation setUploadProgressBlock:^(NSInteger bytesWritten, NSInteger totalBytesWritten, NSInteger totalBytesExpectedToWrite) {
NSLog(@"Sent %d of %d bytes", totalBytesWritten, totalBytesExpectedToWrite);
}];
有谁知道这意味着什么?