50 lines
689 B
Mathematica
50 lines
689 B
Mathematica
|
//
|
||
|
// DoricViewContainer.m
|
||
|
// Doric
|
||
|
//
|
||
|
// Created by pengfei.zhou on 2019/7/30.
|
||
|
//
|
||
|
|
||
|
#import "DoricViewContainer.h"
|
||
|
#import <objc/runtime.h>
|
||
|
|
||
|
@implementation DoricRect
|
||
|
@end
|
||
|
|
||
|
@implementation LayoutParams
|
||
|
@end
|
||
|
|
||
|
|
||
|
@implementation UIView(DoricContainer)
|
||
|
|
||
|
- (LayoutParams *)layoutParams {
|
||
|
return objc_getAssociatedObject(self, _cmd);
|
||
|
}
|
||
|
|
||
|
- (void)setLayoutParams:(LayoutParams *)layoutParams {
|
||
|
objc_setAssociatedObject(self, @selector(layoutParams), layoutParams, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
|
||
|
}
|
||
|
|
||
|
- (void)layout {
|
||
|
|
||
|
}
|
||
|
|
||
|
- (void)measure {
|
||
|
if(self.layoutParams) {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
@end
|
||
|
|
||
|
@implementation Stack
|
||
|
|
||
|
@end
|
||
|
|
||
|
@implementation VLayout
|
||
|
|
||
|
@end
|
||
|
|
||
|
@implementation HLayout
|
||
|
|
||
|
@end
|