gpt4 book ai didi

ios - 对于音频,我应该用什么替换 SetDelegate?

转载 作者:行者123 更新时间:2023-11-29 10:34:56 32 4
gpt4 key购买 nike

我是这个网站的新手,也是 Xcode 的新手,我需要以下代码方面的帮助:

[[AVAudioSession sharedInstance] setDelegate: self];

给我一​​条警告说“'setDelegate' is deprecated: first deprecated in iOS 6.0”

@property(assign) id<AVAudioSessionDelegate> Delegate NS_DEPRECATED_IOS(4_0, 6_0);

给我一​​个警告说“'setDelegate' is has been explicitly marked deprecated here”

最佳答案

正如您亲眼所见,AVAudioSessionDelegate 已被弃用。如果您阅读文档,则会指示您改用通知。

enter image description here

您可以观察到以下通知:

AVAudioSessionInterruptionNotification
AVAudioSessionRouteChangeNotification
AVAudioSessionMediaServicesWereLostNotification
AVAudioSessionMediaServicesWereResetNotification
AVAudioSessionSilenceSecondaryAudioHintNotification

这是 AVAudioSession 类的链接 documentation .

如果您仍然希望使用已弃用的代码,您需要将目标(部署目标)所需的最低 iOS 版本更改为 iOS 5,但请注意,在较新的 iOS 版本中,您的应用可能会损坏!

enter image description here

关于ios - 对于音频,我应该用什么替换 SetDelegate?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27591209/

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