滑动停止后再显示内容
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
if(self.tableView.dragging==NO&&self.tableView.decelerating==NO){
//这里面写cell绘制方法
}
}
滑动停止后再显示内容
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
if(self.tableView.dragging==NO&&self.tableView.decelerating==NO){
//这里面写cell绘制方法
}
}

被折叠的 条评论
为什么被折叠?