I am getting the following crash while displaying the image in cell.
UIImageView sd_setImageWithURL:placeholderImage:completed:]: unrecognized selector sent to instance 0x7fbce1521e70"
I followed all the instruction provided but still not able to get anything, I set the other linker flagto
-Objc` but still getting the same error.
reference image of cell My Code:
UIImageView *img = (UIImageView *)[cell.contentView viewWithTag:1];
NSLog(@"%@",[NSString stringWithFormat:@"%@thumb_%@",kImageUrl,[dict objectForKey:@"student_photo"]]);
[img sd_setImageWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@thumb_%@",kImageUrl,[dict objectForKey:@"student_photo"]]]
placeholderImage:[UIImage imageNamed:@"not_found.png"]];