基本上我浏览堆栈溢出一段时间以获得AFNetworking框架的挂起。我决定使用AFHTTPClient,通过制作扩展AFHTTPClient的单例类。我见过的一些代码是这样的:
(InspectionClient*) sharedClient {
static InspectionClient *client = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
client = [[InspectionClient alloc] initWithBaseURL: [NSURL URLWithString:kServerName]];
});
return client;
}
- (id) initWithBaseURL:(NSURL *)url {
self = [super initWithBaseURL:url];
if (self) {
// register operation class
[self registerHTTPOperationClass:[AFJSONRequestOperation class]];
}
return self;
}
我注意到在创建新的客户端实例时,必须注册操作类。这似乎没问题,如果你只是想发送JSON文件。但我希望我的客户能够更加通用,因此他可以将图片和JSON发布到服务器上。为此,我需要取消注册操作类并注册新类吗?
答案 0 :(得分:2)
我正在使用AFHTTPClient
的子类,我没有在实例中注册操作类。您可以找到有关registerHTTPOperationClass
here的使用情况的详细信息。
我还建议阅读AFNetworking
源代码中的注释,以了解注册操作类的用法:
/**
Attempts to register a subclass of `AFHTTPRequestOperation`,
adding it to a chain to automatically generate request operations from a
URL request.
@param operationClass The subclass of `AFHTTPRequestOperation` to register
@return `YES` if the registration is successful, `NO` otherwise.
The only failure condition is if `operationClass` is not a subclass of
`AFHTTPRequestOperation`.
@discussion When `enqueueHTTPRequestOperationWithRequest:success:failure`
is invoked, each registered class is consulted in turn to see if it can
handle the specific request. The first class to return `YES` when sent a
`canProcessRequest:` message is used to create an operation using
`initWithURLRequest:` and do `setCompletionBlockWithSuccess:failure:`.
There is no guarantee that all registered classes will be consulted.
Classes are consulted in the reverse order of their registration.
Attempting to register an already-registered class will move it to the
top of the list.
*/