gpt4 book ai didi

ios - Swift 3 中的 AVAudiosessionInterruptionNotification

转载 作者:搜寻专家 更新时间:2023-10-31 22:12:09 26 4
gpt4 key购买 nike

这是我在 swift 2 中的代码。

如何在 swift 3 中使用同样的东西?

NotificationCenter.default.addObserver(self, selector: "handleInterruption", name: AVAudiosessionInterruptionNotification, object: nil)

提前致谢!

最佳答案

看看this fine answer

正如它所说:

All of the system notification types are now defined as static constants on Notification.Name; i.e. .UIApplicationDidFinishLaunching, .UITextFieldTextDidChange, etc.

因此,在您的情况下,您可能正在寻找 Notification.Name.AVAudioSessionInterruption

我认为这对你有用:

NotificationCenter.default.addObserver(self, selector: #selector(handleInterruption), name: .AVAudioSessionInterruption, object: nil)

希望对您有所帮助。

关于ios - Swift 3 中的 AVAudiosessionInterruptionNotification,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42626032/

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