滚动视图滚动时如何播放取决于滚动视图滚动速度的声音?

发布于 2024-12-24 03:29:08 字数 520 浏览 0 评论 0原文

我添加了一个滚动视图,它水平滚动。当我的滚动视图滚动时,我必须播放声音。为此,我在

-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
AudioServicesPlaySystemSound(_scrollPewSound);
}

方法中播放了我的音乐文件。 我的问题是我必须播放取决于滚动视图滚动速度的声音。这意味着如果用户快速滚动,则音乐应该播放得快,如果滚动视图滚动得慢,则音乐应该播放得慢。

如果我实现这个方法:-

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
{
AudioServicesPlaySystemSound(_scrollPewSound);  
}

那么当滚动视图滚动时音乐就会播放。

所以这两种效果都达不到要求。

请建议我如何实现这一点。

I have added a scroll view and it scrolls horizontally.I have to play a sound when my scrolls view scrolls.For that I played my music file in

-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
AudioServicesPlaySystemSound(_scrollPewSound);
}

method.
My problem is that I have to play a sound that is dependent on scroll view scrolling speed.Means if user has scroll fast the music should play fast and if the scroll view have scrolled slow the music should play slow.

If I implement this method:-

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
{
AudioServicesPlaySystemSound(_scrollPewSound);  
}

then the music play just when the scroll view gets scrolled.

So these both effects are not fulfill the requirement.

Please suggest me how to implement this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

罪歌 2024-12-31 03:29:08

没有包含“scrollspeed”的属性,但也许,您可以将scrollview.contentOffset保存在某个变量中,然后以一定的延迟启动计时器,再次检查偏移量并计算“scrollspeed”?

There are no property, containing "scrollspeed", but maybe, you can save you scrollview.contentOffset in some variable, then start timer with some delay, which check offset again and calculate "scrollspeed"?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文