I have a vertical UIScrollView that has a StackView in which View Controllers are added to and each View Controller is of a different size.
If scrolling stopped at a specific View Controller (the 3rd one out of five View Controllers), I want to show a tooltip within it.
I already tried checking the scrollview content offset or the view controller's frame.origin.x position but this x position is always returned as 0
How do I know if this specific view controller is now visible to the user (scrollview stopped at it) in ScrollViewWillEndDragging?