This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/iOS/Pod/Classes/Shader/DoricRootNode.m

25 lines
391 B
Mathematica
Raw Normal View History

2019-07-30 21:05:27 +08:00
//
// DoricRootNode.m
// Doric
//
// Created by pengfei.zhou on 2019/7/30.
//
#import "DoricRootNode.h"
@implementation DoricRootNode
2019-07-31 14:18:20 +08:00
- (void)setupRootView:(UIView *)view {
self.view = view;
}
- (void)render:(NSDictionary *)props {
[self blend:props];
2019-08-06 20:06:34 +08:00
[self requestLayout];
}
- (void)requestLayout {
2019-07-31 14:18:20 +08:00
[self measureByParent:self];
2019-07-31 17:43:26 +08:00
[self layoutByParent:self];
2019-07-31 14:18:20 +08:00
}
2019-07-30 21:05:27 +08:00
@end