11 lines
271 B
Objective-C
11 lines
271 B
Objective-C
//
|
|
// Created by pengfei.zhou on 2020/2/13.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "DoricScrollableProtocol.h"
|
|
|
|
@protocol DoricScrollableProtocol <NSObject>
|
|
@property(nonatomic, strong, nullable) void (^didScrollListener)(UIScrollView *__nonnull scrollView);
|
|
@end
|