gpt4 book ai didi

iphone - iPhone 上的 NSSound

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

我一直在寻找如何在 iPhone 上播放声音,我认为它类似于:

[[NSSound soundNamed:@"cat.mp3"] play];

但是 NSSound 在 AppKit 上......有什么建议吗?我知道对此有一个非常简单的答案,但今天我的搜索没有呈现任何结果......

最佳答案

新的 AVFoundation 类是在 iPhone 上播放声音的最简单方法,尽管它仅适用于固件 2.2:

AVAudioPlayer *audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];  
[audioPlayer play];

您只需要在使用它的类中导入:

#import <AVFoundation/AVAudioPlayer.h>

关于iphone - iPhone 上的 NSSound,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/388192/

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