22 lines
339 B
Objective-C
22 lines
339 B
Objective-C
//
|
|
// DoricRootNode.m
|
|
// Doric
|
|
//
|
|
// Created by pengfei.zhou on 2019/7/30.
|
|
//
|
|
|
|
#import "DoricRootNode.h"
|
|
|
|
@implementation DoricRootNode
|
|
- (void)setupRootView:(UIView *)view {
|
|
self.view = view;
|
|
}
|
|
|
|
- (void)render:(NSDictionary *)props {
|
|
[self blend:props];
|
|
[self measureByParent:self];
|
|
[self layoutByParent:self];
|
|
}
|
|
|
|
@end
|