SpiralPullToRefresh icon indicating copy to clipboard operation
SpiralPullToRefresh copied to clipboard

the iOS 7 support code fix is not working with navigation bar. please fix again.

Open iebox opened this issue 12 years ago • 3 comments

We got the iOS 7 version of our Spiral Pull, however, it's not working.

the location is still wrong.

iebox avatar Nov 03 '13 11:11 iebox

What exactly doesn't work? Could you send me your sources?

kronik avatar Nov 06 '13 08:11 kronik

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.

iosware avatar Jan 30 '14 20:01 iosware

[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.

Airfly avatar May 28 '14 08:05 Airfly