I've a strange issue.Where I have a ScrollView and ContentOffset was already Set to it. And I've made a Condition in its Delegate by the below Code.
-(void)scrollViewDidScroll:(UIScrollView *)scrollView{
if(scrollOffsetY > 90 && scrollOffsetY < 150) {
NSLog(@"ContentOffset===>%f",ContentOffset);
}
}
The Condition Which I've Written Works and Get into it only When I Scroll the scrollview Slowly. If I Scroll Faster. It Doesn't Getting into my Loop.
How Do I fix this ? and Get the Exact Value when the Condition is True ?