1234567891011121314151617181920 |
- //
- // UIScrollView+Category.h
- // Blaufuchslive
- //
- // Created by 小凯 on 2020/3/9.
- // Copyright © 2020 刘惠萍. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- //link sc
- #import "LinkScrollView.h"
- @interface UIScrollView (Category)
- //scroll did scroll block with linkSC
- - (void)scrollLink:(LinkScrollView*)linkSC;
- //scroll to bottom
- - (void)scrollToBottom:(BOOL)animated;
- @end
|