我有自定义单元格的 uitableview。
在单元格中,我有一些 UIImageViews。
我使用异步加载数据。
加载后,我应该在单元格中更新我的 uiimageview。
NSString *urlInString =[NSString stringWithFormat:@"%@/index.php/api/getJsonHotels?page=%i&rows_count=%i",webSite,counterPage,5];
NSURLRequest *theRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:urlInString]];
NSURLConnection *mConnect = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self startImmediately:YES];
if(mConnect)
{
dataContent = [NSMutableData new];
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
我可以在没有 tableView 重新加载和重新加载单元的情况下做到这一点吗?我该怎么做?