English 中文(简体)
MPMoviePlayerConller第二次播放录像
原标题:MPMoviePlayerController play video second time

我需要能够拍摄一个以上的录像。

不幸的是,我第二次做新闻,视频似乎有链接。

我只使用这部法律玩 for。

NSURL *url = [[[NSURL alloc]initFileURLWithPath:[NSBundle mainBundle]pathForResource:@Movie” ofType:@“m4v”]

MPMoviePlayer Controller *mp = [[MPMoviePlayerController alloc]initWithContentURL:url];

mp.movieControlMode = MPMovieControlModeDefault;

[游戏];

电影:

[释放];

Can anyone tell me where can be the problem? Thanks in advance!

看来, Apple果 例如,也存在同样的问题。

最佳回答

您也可以这样做,在指定游戏功能之前,将最初的休息时间定为-1。

mp.initialPlaybackTime = -1.0;

在游乐方法之前使用该代码。

问题回答

我有这个问题,并通过使用通知系统在马西维埃·克莱尔议员结束玩.后进行追捕,并释放该角色的物体来解决。

在电影上添加通知:

NSURL *url = [[[NSURL alloc]initFileURLWithPath:[[NSBundle mainBundle]pathForResource:@"Movie" ofType:@"m4v"]] autorelease];

MPMoviePlayerController *mp = [[MPMoviePlayerController alloc]initWithContentURL:url];

mp.movieControlMode = MPMovieControlModeDefault;

//***Add this line***
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(myMovieFinished:) name:MPMoviePlayerPlaybackDidFinishNotification object:mp];

[mp play];

然后添加背书方法,

-(void)myMovieFinished:(NSNotification*)aNotification
{
    MPMoviePlayerController *moviePlayer = [aNotification object];
    [[NSNotificationCenter defaultCenter] removeObserver:self name:MPMoviePlayerDidFinishNotification object:moviePlayer];
    [moviePlayer release];
}

唯一解决办法是......为3.1作出评估。

我也认为,从第3.1号行动来看,模拟器可以发挥很好的作用。 它赢得的表面连接。 但我补充说:

initialPlaybackTime = -1.0

它还将在第3号工作中发挥良好作用。





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签