1

When i use large titles for the Navigation bar, the added UIRefresh control for the UIScrollView is not triggered when pulled down

{
    self.scrollView.refreshControl = [[UIRefreshControl alloc] init];
    [self.scrollView bringSubviewToFront:self.scrollView.refreshControl];
    // add target
}

When i use normal small titles, it starts working by triggering the event

How to make it work with large titles?

enter image description here

Peter Lapisu
  • 19,915
  • 16
  • 123
  • 179
  • did you try https://stackoverflow.com/questions/50708081/prefer-large-titles-and-refreshcontrol-not-working-good? – carsten Mar 13 '19 at 12:26
  • this issue is not about flickering, but about the issue that the refresh control action is not called at all – Peter Lapisu Mar 13 '19 at 12:30

1 Answers1

2

I had the same problem a while ago and for me I could make it work by calling scrollView.refreshControl.didMoveToSuperview() in viewDidAppear.

Peter Lapisu
  • 19,915
  • 16
  • 123
  • 179
Victor Pro
  • 199
  • 4