gpt4 book ai didi

IOS: ScrollView 中的声音

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:24:36 24 4
gpt4 key购买 nike

我有这个代码:

- (void) setAudioScroll{
NSString *path = [NSString stringWithFormat:@"%@/%@",
[[NSBundle mainBundle] resourcePath],
@"scroll1.mp3"];
NSURL *filePath = [NSURL fileURLWithPath:path isDirectory:NO];
soundScroll = [[AVAudioPlayer alloc] initWithContentsOfURL:filePath error:nil];
[soundScroll prepareToPlay];

}

- (void) scrollViewDidScroll:(UIScrollView *)scrollView{


[soundScroll play];
}

然后我想在scrollview滚动的时候发出声音。但是当我滚动它时,我发现它不能正常工作,因为当它调用 mp3 声音时,它会短时间停止滚动。我可以使用单独的线程吗?

最佳答案

- (void) scrollViewDidScroll:(UIScrollView *)scrollView

在一次滚动中多次调用,时间间隔很短,您不希望每次调用 [soundScroll play]; 时调用此回调,而是使用此回调

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView

以便在滚动开始时播放一次声音,或者两者之一

- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView

如果您希望在用户滚动后播放声音。如果您希望短声音在滚动中连续循环,您可以将 AVAudioPlayer numberOfLoops 属性设置为负值,以便它无限循环,然后在滚动停止时停止它。

关于IOS: ScrollView 中的声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8402820/

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