youtube ios播放器帮助程序的占位符图像

youtube ios播放器帮助程序的占位符图像,ios,objective-c,iphone,Ios,Objective C,Iphone,我正在应用程序中使用youtube ios player helper,有没有办法为视频设置视频占位符图像 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ VideoCell *cell= (VideoCell*)[tableView dequeueReusableCellWithIdentifier:@"cell"];

我正在应用程序中使用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;
}

?@Larme我在我的问题中上传了一个gif。。。我想设置占位符图像,而不是白色的空格。在上面放置一个UIImageView来为预览/缩略图充电(例如SDWebImage),当调用playerViewDelegate(
PlayerViewIDBecomeready:
)时,隐藏UIImageView@Larme我在我的问题中上传了gif。。。我想设置占位符图像,而不是白色的空格。在上面放置一个UIImageView来为预览/缩略图充电(例如使用SDWebImage),当调用PlayerViewDeleteGate(
PlayerViewIDBecomeready:
)时,隐藏UIImageView。