i am using youtube-ios-player-helper in my application and is there any way to set video placeholder image for video ?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
VideoCell *cell= (VideoCell*)[tableView dequeueReusableCellWithIdentifier:@"cell"];
if (cell==nil)
{
cell = [[[NSBundle mainBundle] loadNibNamed:@"VideoCell" owner:self options:nil] objectAtIndex:0];
}
//
NSMutableDictionary* VideoDict;
VideoDict = [arrVideolist objectAtIndex:indexPath.row];
[cell.playerView loadWithVideoId:VideoDict[@"video_url"]];
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
return cell;
}