Skip to content
This repository was archived by the owner on Feb 2, 2023. It is now read-only.

Commit 5be14e4

Browse files
committed
Merge pull request #1078 from aaronschubert0/ASTableView-Layout-bug-fix
[ASTableView] Ensure -[super layoutSubviews] is called before messaging delegate.
2 parents 1e8c707 + 7821a0a commit 5be14e4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

AsyncDisplayKit/ASTableView.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ @implementation _ASTableViewCell
4747

4848
- (void)layoutSubviews
4949
{
50-
[_delegate willLayoutSubviewsOfTableViewCell:self];
5150
[super layoutSubviews];
51+
[_delegate willLayoutSubviewsOfTableViewCell:self];
5252
}
5353

5454
- (void)didTransitionToState:(UITableViewCellStateMask)state

0 commit comments

Comments
 (0)