Skip to content

Commit e6ee24d

Browse files
authored
[ASDisplayNode] Improve locking in ASDisplayNode (facebookarchive#3172)
* Improve locking in ASDisplayNode * Address first bunch of comments * Changed `view` and `layer` methods for locking * Adress comments
1 parent b1cfd76 commit e6ee24d

5 files changed

Lines changed: 305 additions & 234 deletions

File tree

Source/ASCellNode.mm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,12 @@ - (void)layoutDidFinish
118118
_viewControllerNode.frame = self.bounds;
119119
}
120120

121-
- (void)_locked_rootNodeDidInvalidateSize
121+
- (void)_rootNodeDidInvalidateSize
122122
{
123123
if (_interactionDelegate != nil) {
124124
[_interactionDelegate nodeDidInvalidateSize:self];
125125
} else {
126-
[super _locked_rootNodeDidInvalidateSize];
126+
[super _rootNodeDidInvalidateSize];
127127
}
128128
}
129129

0 commit comments

Comments
 (0)