I have uitableview with custom cell.
In cell i have some UIImageViews.
I use async load data.
When its loaded, i should update my uiimageview in cell.
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
I can do it without tableView reload and reload cell? How i can do it?