Skip to content

Instantly share code, notes, and snippets.

@piyushdec
Created July 28, 2019 19:02
Show Gist options
  • Select an option

  • Save piyushdec/b267fa64d82aa66ea3b17b51e363da67 to your computer and use it in GitHub Desktop.

Select an option

Save piyushdec/b267fa64d82aa66ea3b17b51e363da67 to your computer and use it in GitHub Desktop.
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSData *imageData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:obj.img]];
dispatch_async(dispatch_get_main_queue(), ^{
cell.imgView.image = [UIImage imageWithData:imageData];
});
return cell;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment