两部分问题
第一部分: 我正在尝试向数据库创建一个ASynchronous请求。我目前正在同步进行操作,但是我想学习两种方法以更好地了解发生的情况。
目前,我已经像这样设置了我的同步呼叫。
- (IBAction)setRequestString:(NSString *)string
{
//Set database address
NSMutableString *databaseURL = [[NSMutableString alloc] initWithString:@"http://127.0.0.1:8778/instacodeData/"]; // imac development
//PHP file name is being set from the parent view
[databaseURL appendString:string];
//call ASIHTTP delegates (Used to connect to database)
NSURL *url = [NSURL URLWithString:databaseURL];
//SynchronousRequest to grab the data
NSURLRequest *request = [NSURLRequest requestWithURL:url];
NSError *error;
NSURLResponse *response;
NSData *result = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
if (!result) {
//Display error message here
NSLog(@"Error");
} else {
//TODO: set up stuff that needs to work on the data here.
NSString* newStr = [[NSString alloc] initWithData:result encoding:NSUTF8StringEncoding];
NSLog(@"%@", newStr);
}
}
我认为我需要做的是替换通话
NSData *result = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
与异步版本
sendAsynchronousRequest:queue:completionHandler:
但是我不确定传递给queue或completionHandler的内容...任何示例/解决方案将不胜感激。
第二部分: 我一直在阅读有关多任务的内容,我想通过确保在发生中断时我的连接请求完成来支持它。我一直在关注这个例子
它解释了如果发生中断,如何获得更多的时间,我了解它在做什么。如果您有任何示例/教程可以帮助我弄清楚如何应用它,那就太好了!