gpt4 book ai didi

ios - 如何以编程方式播放iOS标准 "Tweet sent"声音?

转载 作者:行者123 更新时间:2023-11-29 04:13:16 27 4
gpt4 key购买 nike

我正在使用 TWTweetComposeViewController 来撰写推文。

然后我这样手动发送推文:https://stackoverflow.com/a/14067278/440168

如何播放标准的“推文已发送”声音通知?

最佳答案

这个声音非常相似:http://soundjax.com/reddo/51828%5EWHISTLE.mp3

你可以这样玩:

NSError *error;
NSString *path = [NSString stringWithFormat:@"%@/%@", NSBundle.mainBundle.resourcePath, @"whistle.mp3"];
NSUrl *url = [NSURL fileURLWithPath:path isDirectory:NO];
AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithContentsOfURL:self.whistleUrl error:&error];

player.numberOfLoops = 0;
player.volume = 0.4;

if (player == nil) {
NSLog(@"%@", error.description);
return;
}

[player play];

关于ios - 如何以编程方式播放iOS标准 "Tweet sent"声音?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14067685/

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