gpt4 book ai didi

iphone - 如何确定用户在 MPMoviePlayer 实例中的当前位置?

转载 作者:行者123 更新时间:2023-12-03 20:24:55 26 4
gpt4 key购买 nike

我有一部很长的电影,我将把它放入应用程序中,我想知道让用户回到他们上次停下的地方的最佳方法是什么。有人能指出我正确的方向吗?

因此,如果用户正在观看电影,点击“完成”,是否有当前时间的通知或我可以在该时间再次存储和加载实例的通知?

谢谢!

最佳答案

我发现了一种不使用私有(private) API 组件的 OS 3.0 技术。

您可以注册以接收 MPAVControllerTimeDidJumpNotification 通知,并从该通知的 userInfo 字典中获取 MPAVControllerTimeParameter NSNumber。

例如,在开始播放之前注册以接收通知:

#define MPAVControllerTimeDidJumpNotification @"MPAVControllerTimeDidJumpNotification"

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleTimeChanged:) name:MPAVControllerTimeDidJumpNotification object:nil];

然后开始播放电影。添加一个在电影播放时每次更改都会调用的方法:

-(void)handleTimeChanged:(NSNotification *)notification
{
NSDictionary * userInfo = notification.userInfo;
int lastPositionInSeconds = [[userInfo valueForKey:@"MPAVControllerTimeParameter"] intValue];
NSLog( @"Last time was %d", lastPositionInSeconds );
}

当电影停止播放时(您可以通过监听 MPMoviePlayerPlaybackDidFinishNotification 通知来了解这一点),请停止监听 MPAVControllerTimeDidJumpNotification 通知。

关于iphone - 如何确定用户在 MPMoviePlayer 实例中的当前位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1197407/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com