摘要: 除了使用第三方资源库来实现下拉刷新,我们也可以使用苹果的SDK中的UIRefreshControl来实现
其实UIRefreshControl的效果还是蛮不错的,所以特地学习了下,在此与大家分享。
UIRefreshControl使用非常简单,但是必须是在UITableViewController子类使用,而不能在UIViewController子类中使用。例如CustomViewController继承自UIViewController,那么就不能使用UIRefreshControl。
UIRefreshControl使用很简单,如下代码,RootTableViewController继承自UITableViewController,