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
26
27
28
29
30
31
32
| //
| // FFPageProtocol.h
| // FFPage
| //
| // Created by North on 2019/8/10.
| // Copyright © 2019 North. All rights reserved.
| //
|
| #import <Foundation/Foundation.h>
|
| @protocol FFPageProtocol <NSObject>
|
|
| @required
|
| /**
| 返回本控制器的滚动视图
|
| @return 滚动视图
| */
| - (UIScrollView *_Nonnull)scrollview;
|
| @optional
|
|
| /**
| 滚动视图的偏移量改变了
|
| @param conentOffset 偏移量
| */
| - (void)conentOffsetDidChanged:(CGPoint)conentOffset;
| @end
|
|