How to implement the Touch Up Inside or equivalent event on UITableView, means to create the refresh/update mechanism like in Facebook's iOS App in news feed, while user dragging the list from the top down and see the label 1)"pull down to update" -> 2) "release to update" -> 3) updating while user release the finger. The problem is with 3d step...
Asked
Active
Viewed 331 times
0
-
Have you tried `[UITableView Reloaddata];` – Hemant Singh Rathore Aug 05 '14 at 13:40
1 Answers
1
If you use a UITableViewController then you can use the inbuilt refresh control. See the documentation and look at the refreshControl property.
Edit
This is a pre-built control that will do what you're looking for.

Sadiq Jaffer
- 500
- 2
- 10
-
-
@LifeStyle .. and you for sure have a controller for this UITableView, don't you? – Timo Josten Aug 05 '14 at 13:46