UIRefreshcontrol jitters when pulled down and held

后端 未结 7 632
野趣味
野趣味 2021-01-01 23:21

I have created a UIRefreshcontrol in my tableviewcontroller as follows in the viewdidload method :

    refresh = [UIRefreshControl.alloc init];
    refresh.a         


        
7条回答
  •  误落风尘
    2021-01-01 23:57

    Just add tableView.alwaysBounceVertical = YES after your [refresh endRefreshing] so table will bounce to top after the refresh control ended its animation.

提交回复
热议问题