UIImageView は画像を取得せず、null を返します。遅延コードも試しましたが、それでも null が返されます。
UIImageView *image_view=[[UIImageView alloc]initWithFrame:CGRectMake(10, 2, 50, 58)];
NSString *StrImg=[[NSString alloc]init];
StrImg=[NSString stringWithFormat:@"%@",[[Array_FinalobjectAtIndex:indexPath.row]objectForKey:@"coverphoto"]];
NSLog(@"StrImg value=%@",StrImg);
[image_view setImageWithURL:[NSURL URLWithString:StrImg] placeholderImage:[UIImage imageNamed:@"star.png"] success:^(UIImage *image) {}failure:^(NSError *error){}];