Make background color change during scroll

前端 未结 5 1980
太阳男子
太阳男子 2021-01-14 07:10

I have an onboarding section of my app with 4 pages the users scrolls through horizontally to get an idea of how to use the app (standard). I want the background color to tr

5条回答
  •  醉话见心
    2021-01-14 08:00

    Set scroll view delegate and use below method

    //This method is called when scroll view ends scrolling
    - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
    {
        [self updateColor];
    }
    

提交回复
热议问题