I am building an app with a stream of social content and am trying to get the behavior of how instagram does it's stream in app. So basically a top header that scrolls off the screen but bounces between that and the content. I can make the top header scroll off the screen and I can make the view not bounce but I want to use Pull to refresh and that ends up going above the "faux" nav bar UIView
. I know that a normal Navbar will produce this but this one that scrolls off is a different story.
Currently I have a UITableview
that has a UIView
above the UITableViewCell
and everything works great except the bounce happens above the UIView
. I figure I need to get the UIView
above the UITableView
however in the UITableViewController the storyboard won't allow me to place the UIView
above the UITableView
.
Any ideas???
Thanks