MPMoviePlayerController *mMoviePlayer = [[MPMoviePlayerController alloc] initWithContentURL: [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"token" ofType:@"mp4"]]];
    
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(moviePlayBackDidFinish:)
                                                 name:MPMoviePlayerPlaybackDidFinishNotification
                                               object:mMoviePlayer];
    mMoviePlayer.scalingMode = MPMovieScalingModeNone;
    mMoviePlayer.backgroundColor = [UIColor whiteColor]; 






posted on 2012-09-10 10:35  jackljf  阅读(141)  评论(0编辑  收藏  举报