Is there any way with the help of which we can detect the scroll stop event in case of iphone… I have to perform some task as soon as the user stops scrolling but I am not able to do that in iPhone using Ionic
You can easily get the scrollTop position of your content. Afterwards, you can verify if this position have changed.
maybe.
look for getScrollPosition() in http://ionicframework.com/docs/api/service/$ionicScrollDelegate/
$timeout({ stock lastPosition; get newPosition; if (newPosition == lastPosition) doStuff();},200)