How to add sound while UIScrollview is scrolling in iphone sdk?

前端 未结 2 505
温柔的废话
温柔的废话 2020-12-12 08:11

This is my code for adding sound while UIScrollview is scrolling in iPhone SDK. In this code, how to add the sound while using touch-events in scrolling? Please give me your

2条回答
  •  萌比男神i
    2020-12-12 08:39

    you mast use UIScrollViewDelegate method

    - (void)scrollViewDidScroll:(UIScrollView *)scrollView{
       //play sound here 
    }
    

提交回复
热议问题