我在我的应用程序中使用youtube-ios-player-helper,有没有办法为视频设置视频占位符图像?
- (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;
}