使用 iOS 5 的新TWRequest
API,我遇到了与块使用相关的砖墙。
我需要做的是在收到对第一个请求的成功响应后,立即触发另一个请求。在第二个请求的完成块上,我通知多步操作的成功或失败。
这大致是我正在做的事情:
- (void)doRequests
{
TWRequest* firstRequest = [self createFirstRequest];
[firstRequest performRequestWithHandler:^(NSData* responseData,
NSHTTPURLResponse* response,
NSError* error) {
// Error handling hidden for the sake of brevity...
TWRequest* secondRequest = [self createSecondRequest];
[secondRequest performRequestWithHandler:^(NSData* a,
NSHTTPURLResponse* b,
NSError* c) {
// Notify of success or failure - never reaches this far
}];
}];
}
我没有保留任何请求或在任何地方保留对它们的引用;这只是一劳永逸。
但是,当我运行该应用程序时,它会崩溃EXC_BAD_ACCESS
:
[secondRequest performRequestWithHandler:...];
它可以很好地执行第一个请求,但是当我尝试使用处理程序启动第二个请求时,它会崩溃。那个代码有什么问题?
创建请求的方法很简单:
- (TWRequest*)createFirstRequest
{
NSString* target = @"https://api.twitter.com/1/statuses/home_timeline.json";
NSURL* url = [NSURL URLWithString:target];
TWRequest* request = [[TWRequest alloc]
initWithURL:url parameters:params
requestMethod:TWRequestMethodGET];
// _twitterAccount is the backing ivar for property 'twitterAccount',
// a strong & nonatomic property of type ACAccount*
request.account = _twitterAccount;
return request;
}