gpt4 book ai didi

iphone - 如何分配 AVPlayer 播放/暂停按钮 iOS?

转载 作者:行者123 更新时间:2023-11-29 11:03:03 25 4
gpt4 key购买 nike

几天前我问过这个问题,但没有人回答我,我找不到解决方案。

所以我想再次问同样的问题,如果你知道答案请回答我。

我想将图片中的这些按钮分配给我的 avplayer 播放/暂停按钮。

enter image description here

注意:我的应用程序图标出现在正在播放的栏中而不是音乐图标,我的应用程序在后台运行正常。

请帮忙。

最佳答案

要允许传送远程控制事件,您必须调用 beginReceivingRemoteControlEvents UIApplication 的方法。

然后您通过实现 remoteControlReceivedWithEvent: 来响应远程控制事件像这样的方法:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
...

[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
[[UIApplication sharedApplication] becomeFirstResponder];


return YES;
}

- (void)remoteControlReceivedWithEvent:(UIEvent *)event
{
switch (event.subtype)
{
case UIEventSubtypeRemoteControlPlay:
// play code
...
break;
case UIEventSubtypeRemoteControlTogglePlayPause:
// toggle code
...
break;
case UIEventSubtypeRemoteControlNextTrack:
// next code
...
break;
default:
break;
}
}

关于iphone - 如何分配 AVPlayer 播放/暂停按钮 iOS?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14960747/

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