我正在创建一个从plist下载数据并在tableview中使用该数据的应用程序。有没有办法检查与网址的连接是否成功,然后下载是否成功?或者也许是一个实现这样的东西的教程?
由于
答案 0 :(得分:2)
你必须实现NSURLConnection的这个委托
//send the request
NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
-(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error{
NSlog(@"no connection");
}