I created UIScrollView and added large image inside of the scrollview to scroll. My question is how should I know the current location of the image that I added inside of the scrollview like its X and Y? Like for example, I scroll the image horizontally then and I want to know what its new X and Y value of the image.
I created UIScrollView and added large image inside of the scrollview to scroll. My
Share
See scrollview.contentOffset. That should have the coordinates of the point that is visible in the top-left corner of the scrollview after any scrolling.