diff --git a/lib/UIKit/TUITableView.m b/lib/UIKit/TUITableView.m index 24d7550d..03850cfa 100644 --- a/lib/UIKit/TUITableView.m +++ b/lib/UIKit/TUITableView.m @@ -772,8 +772,10 @@ - (void)_layoutSectionHeaders:(BOOL)visibleHeadersNeedRelayout } } - section.headerView.frame = headerFrame; - [section.headerView setNeedsLayout]; + if (![self __isDraggingCell]) { + section.headerView.frame = headerFrame; + [section.headerView setNeedsLayout]; + } if(section.headerView.superview == nil){ [self addSubview:section.headerView];