UIScrollView+Category.h 409 B

1234567891011121314151617181920
  1. //
  2. // UIScrollView+Category.h
  3. // Blaufuchslive
  4. //
  5. // Created by 小凯 on 2020/3/9.
  6. // Copyright © 2020 刘惠萍. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. //link sc
  10. #import "LinkScrollView.h"
  11. @interface UIScrollView (Category)
  12. //scroll did scroll block with linkSC
  13. - (void)scrollLink:(LinkScrollView*)linkSC;
  14. //scroll to bottom
  15. - (void)scrollToBottom:(BOOL)animated;
  16. @end