iOS: fix when Image async load cause super node requestLayout

This commit is contained in:
pengfei.zhou
2021-11-12 16:23:01 +08:00
committed by osborn
parent af77a0e98e
commit 4c80e5aa60
6 changed files with 42 additions and 16 deletions

View File

@@ -314,4 +314,9 @@ - (void)reset {
self.propRenderPageFuncId = nil;
self.renderPageFuncId = nil;
}
- (void)subNodeContentChanged:(DoricViewNode *)subNode {
[subNode.view.doricLayout apply];
[super subNodeContentChanged:subNode];
}
@end