Many iPhone projects use “Pull-to-Refresh” pattern to load more results (usually new data from the server.
In my project I want to do just the opposite: “pull-up to refresh”. I want to load old data from the server but I need that the user request the data pulling up the UITableView.
How can I do it? Can anybody help me?
Here’s what I’ve been using:
First of all you have a view holding the “Pull up to refresh message”, and assign it to:
Then you setup two delegate methods as below to track the dragging.
At the end revert the tableView’s contentInset to hide the pullUpView.