zjf
2023-03-06 392b76515f40376b6d36f40a114850ef63650384
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
//  JYPulleyScrollView.h
//  JYPulleyController
//
//  Created by JunpuChen on 2018/7/30.
//  Copyright © 2018年 earnestLin. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@class JYPulleyScrollView;
 
@protocol JYPulleyScrollViewDelegate <NSObject>
 
- (BOOL)shouldTouchPulleyScrollView:(JYPulleyScrollView *)scrollView point:(CGPoint)point;
 
- (UIView *)viewToReceiveTouch:(JYPulleyScrollView *)scrollView point:(CGPoint)point;
 
@end
 
@interface JYPulleyScrollView : UIScrollView
 
@property (nullable, nonatomic, weak) id<JYPulleyScrollViewDelegate> touchDelegate;
 
@end