UIScrollView delegate method not called when its content size is small. Is there any way to get event of scrollViewWillBeginDragging
func scrollViewWillBeginDragging(_ scrollView: UIScrollView)
UIScrollView delegate method not called when its content size is small. Is there any way to get event of scrollViewWillBeginDragging
func scrollViewWillBeginDragging(_ scrollView: UIScrollView)
I am able to fix it, I feel that UIScrollView behaviour to not allow scroll for smaller content is logical. In my case, requirement was to get
UIScrollViewDelegate'sfunc scrollViewDidScroll(_ scrollView: UIScrollView)method. I am able to fix it after setting scrollview propertyThank you @DonMag for suggestion.