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/doric-iOS/Pod/Classes/DoricScrollableProtocol.h

16 lines
400 B
C
Raw Normal View History

2020-02-13 22:18:13 +08:00
//
// Created by pengfei.zhou on 2020/2/13.
//
#import <Foundation/Foundation.h>
#import "DoricScrollableProtocol.h"
typedef void (^DoricDidScrollBlock)(UIScrollView *__nonnull scrollView);
2020-02-13 22:18:13 +08:00
@protocol DoricScrollableProtocol <NSObject>
- (void)addDidScrollBlock:(__nonnull DoricDidScrollBlock)didScrollListener;
- (void)removeDidScrollBlock:(__nonnull DoricDidScrollBlock)didScrollListener;
2020-02-13 22:18:13 +08:00
@end