将MPMoviePlayerController复制到otherclass

时间:2014-07-30 12:42:21

标签: ios class copy mpmovieplayercontroller nscopying

我关注了senario

我的课程中有MPMovieController,它播放得很好。在buttun点击我想将MPMovieController移动到其他类并想要在该类的视图上添加它为此我已经完成了这个

 UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
 ImageViewController  *imageViewClass = (ImageViewController *)[storyboard instantiateViewControllerWithIdentifier:@"ImageViewClass"];
 imageViewClass.moviee=_moviePlayerReference;
 [self presentViewController:imageViewClass animated:YES completion:nil];

问题是,当我将MPMovieController对象添加到其他类(其他类视图添加子视图MPMoviePlayer对象的视图)时,它从第一个类中删除,可能是因为我传递了相同的引用。因此,我想创建一个MPMovieController的副本,然后传入第二个类,以便它不会改变原始对象。我怎么能这样做。

0 个答案:

没有答案