テーブルビューを表示したスクロールビューが1つあります。カスタムセルがあり、それをクリックしてビデオを表示したい。うまく機能していますが、全画面ボタンをクリックすると、アプリケーションがクラッシュします。どうすればこの問題を解決できますか..ビデオを表示するコードを以下に示します。
MPMoviePlayerController *moviePlayer= [[MPMoviePlayerController alloc] initWithContentURL:url];
moviePlayer.view.frame = CGRectMake([cordinate.x integerValue], [cordinate.y integerValue], [cordinate.width integerValue], [cordinate.height integerValue]);
moviePlayer.controlStyle = MPMovieControlStyleEmbedded;
[cell addSubview:moviePlayer.view];
[moviePlayer prepareToPlay];
これを解決するのを手伝ってください..