だから私はUICollectionViewで抱えている別の問題。
今回はUICollectionViewCellに埋め込み動画(YouTube)を表示しようとしています。
Embed メソッドは機能しません。空白のセルが表示されます。
パスを直接使用すると機能しますが、ビデオのみではなく Youtube のページ全体が表示されます。
それは何でしょうか?
コードは次のとおりです。
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
L4VideoCell *videocell = [collectionView dequeueReusableCellWithReuseIdentifier:@"videoCell" forIndexPath:indexPath];
videocell.backgroundColor = [UIColor whiteColor];
NSString *webpath = @"<iframe width=\"420\" height=\"315\" src=\"//www.youtube.com/embed/rmx55fxRK5A?rel=0\" frameborder=\"0\" allowfullscreen></iframe>";
[videocell.webAudioView loadHTMLString:webpath baseURL:nil];
return videocell;
}