Carthage support #856

Closed
sjmueller wants to merge 6 commits from master into main
32 changed files with 496 additions and 1161 deletions
Showing only changes of commit 84866da288 - Show all commits

View File

@@ -400,7 +400,7 @@ static void YGAttachNodesFromViewHierachy(UIView *const view)
NSMutableArray<UIView *> *subviewsToInclude = [[NSMutableArray alloc] initWithCapacity:view.subviews.count];
for (UIView *subview in view.subviews) {
if (subview.yoga.isEnabled && subview.yoga.isIncludedInLayout) {
if (subview.yoga.isIncludedInLayout) {
[subviewsToInclude addObject:subview];
}
}