I’m using an UIScrollView and I have an image that indicates to the user that there is more content that they can scroll through vertically. I would like this image to be hidden when the scrollview is all the way at the bottom. Is there a way to do this? Would I have to subclass UIScrollView and make my own?
Share
your scroll view’s delegate should repsond to scrollViewDidEndScrollingAnimation: and use that to check where you are
NB The if statement was done in my head so it might be the wrong way round 😉