How can I reveal the UIRefreshControl when I update the table programmatically? Using [self.refreshControl beginRefreshing] make the spinner animate but does not reveal it.
相关问题
- Custom UITableview cell accessibility not working
- UITableViewCell layout not updating until cell is
- Showing a checkmark accessory view move the table
- Setting the inputAccessoryView of a UITextField to
- How to put ActivityIndicator inside UIImage inside
相关文章
- UITableView dragging distance with UIRefreshContro
- Popover segue to static cell UITableView causes co
- TransitionFromView removes previous view
- ios7 new pan gesture to go back in navigation stac
- Navigation bar disappears when typing in UISearchC
- XCode 4.5 giving me “SenTestingKit/SenTestKit.h” f
- Inserting row and deleting row simultaneously. UIT
- Swift Change the tableviewcell border color accord
This will do the trick
For Swift 3, this is what I have based on Peter Lapisu's answer:
You'll have to manually change the
contentOffset
of yourUITableView
yourself. Be sure to account for thecontentInset.top
. It should be something as simple as: