the iOS 7 support code fix is not working with navigation bar. please fix again.
We got the iOS 7 version of our Spiral Pull, however, it's not working.
the location is still wrong.
What exactly doesn't work? Could you send me your sources?
I guess problem is that Spiral Pull is shown under navigation bar in iOS 7.
To solve it - you need to uncheck "Extend edges Under Top Bar" for your UIVIewController in your xib or storyboard.
[self.scrollView setContentOffset:CGPointMake(self.scrollView.contentOffset.x, 0) animated:YES]; //in onAnimationTimer()
if your view controller has navigation bar & in iOS 7, when tableview is 100% size of the view controller's frame, need to replace 0 to -64.