- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset
-{
/// 获取当前索引
NSInteger currentIndex = (*targetContentOffset).y/scrollView.bounds.size.height;
[self playTheVideoAtIndexPath:[NSIndexPath indexPathForRow:currentIndex inSection:0]];
}