feat:iOS implement coordinator plugin

This commit is contained in:
pengfei.zhou
2020-02-13 22:18:13 +08:00
committed by osborn
parent 630ec51504
commit 6bf61b3769
15 changed files with 226 additions and 24 deletions

View File

@@ -21,12 +21,12 @@
//
#import <Foundation/Foundation.h>
#import "DoricSuperNode.h"
#import "DoricScrollViewDelegate.h"
#import "DoricScrollableProtocol.h"
@interface DoricScrollView : UIScrollView
@property(nonatomic, strong) UIView *contentView;
@end
@interface DoricScrollerNode : DoricSuperNode<DoricScrollView *>
@property(nonatomic, weak, nullable) id <DoricScrollViewDelegate> delegate;
@interface DoricScrollerNode : DoricSuperNode<DoricScrollView *> <DoricScrollableProtocol>
@property(nonatomic, strong, nullable) void (^didScrollListener)(UIScrollView *__nonnull scrollView);
@end