这是我的问题:
我有一个AFHTTPSessionManager
文件,它也是一个单例,并管理我对服务器的所有API请求。一旦我从responseObject
服务器获得了答案,我就会将其传回给UIViewController
,并使用代理人提出要求。
我的问题是:由于我的经理是单身人士,如果另一个UIViewController
同时发出了另一个API请求,则该委托设置为此控制器,并且当我收到第一个请求responseObject
时我不能再把它传回第一个UIViewController
了。
我希望这很容易理解。
解决这个问题的正确方法是什么?
以下是AFHTTPSessionManager
类中的方法:
- (void)getStaffForCompany:(int)companyID
{
if ([[NSUserDefaults standardUserDefaults] objectForKey:@"currentUser"])
{
NSMutableDictionary *parameters = [NSMutableDictionary dictionary];
parameters[@"apiKey"] = agendizeApiKey;
parameters[@"token"] = [[AGZUserManager sharedAGZUser] currentApplicationUser].token;
[self GET:[NSString stringWithFormat:@"scheduling/companies/%d/staff", companyID] parameters:parameters success:^(NSURLSessionDataTask *task, id responseObject) {
if ([self.delegate respondsToSelector:@selector(AGZClient:successedReceiveStaffList:)]) {
[self.delegate AGZClient:self successedReceiveStaffList:responseObject];
}
} failure:^(NSURLSessionDataTask *task, NSError *error) {
if ([self.delegate respondsToSelector:@selector(AGZClient:failedReceiveStaffList:)]) {
[self.delegate AGZClient:self failedReceiveStaffList:error];
}
}];
}
}
谢谢!
答案 0 :(得分:2)
您可以定义自己的完成块并将您的responseObject传递回控制器,这是一个示例CustomCompletion
。
将其添加到AFHTTPSessionManager.h
行上方的@implementation
。
typedef void(^CustomCompletion)(id responseObject);
更新您的方法以包含CustomCompletion
对象。
- (void)getStaffForCompany:(int)companyID withCompletion:(CustomCompletion)completion {
// On success pass the responseObject back like so.
completion(responseObject);
}
然后where all the magic happens
,回到你的控制器中,在你的单身人士上调用这个方法并处理完成。
[SingletonManager getStaffForCompany:1 withCompletion:^(id responseObject) {
if (responseObject) {
// do something with this object
}
}];
我还没有测试过这段代码,但我在Swift
做了一些非常类似的事情,它可以很好地对待。