导入MediaPlayer.framework,引入头文件#import <MediaPlayer/MediaPlayer.h>
}
-(void)movieFinishedCallback:(NSNotification*)notify {
MPMoviePlayerController* theMovie = [notify object];
[[NSNotificationCenter defaultCenter] removeObserver:self
name:MPMoviePlayerPlaybackDidFinishNotification
object:theMovie];
[theMovie.view removeFromSuperview];
}
原文:http://blog.csdn.net/iosdevtip/article/details/23735533