KoaPullToRefresh
KoaPullToRefresh copied to clipboard
Doesn't play well with navigation bar
I have a navigation bar on my tableviewcontroller and the default implementation hides the top part of the table under the navbar.
@sergigracia , can you fix this please? It would help us a lot!
I also tried SSPullToRefresh and had a similar problem. I got around it by turning off navigation bar transparency. You might want to try the same thing.
@bodagetta , to fix this put this on your viewDidLoad:
if ([self respondsToSelector:@selector(edgesForExtendedLayout)]) self.edgesForExtendedLayout = UIRectEdgeNone;
Thanks! I'll try it out
UIRectEdgeNone
changes how nav bar opacity works, so it's a work around at best.
@tiagojsalmeida thanks for your solution
@tiagojsalmeida thanks for your solution !
@tiagojsalmeida thank you very much!