Created
July 28, 2019 19:02
-
-
Save piyushdec/b267fa64d82aa66ea3b17b51e363da67 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -(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