0
我正在使用TWTweetComposeViewController進行推文撰寫。如何以編程方式播放iOS標準的「Tweet發送」聲音?
然後我手動發送推文是這樣的:https://stackoverflow.com/a/14067278/440168
如何播放標準的「分享Tweet發送」的聲音通知?
我正在使用TWTweetComposeViewController進行推文撰寫。如何以編程方式播放iOS標準的「Tweet發送」聲音?
然後我手動發送推文是這樣的:https://stackoverflow.com/a/14067278/440168
如何播放標準的「分享Tweet發送」的聲音通知?
這聲音很相似: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];