财神随手记账

UIScrollView+SREmptyData.h 452B

123456789101112131415161718192021222324
  1. //
  2. // UIScrollView+SREmptyData.h
  3. // SREmptyDataViewDemo
  4. //
  5. // Created by https://github.com/guowilling on 2018/1/11.
  6. // Copyright © 2018年 SR. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class SREmptyDataView;
  10. @interface UIScrollView (SREmptyData)
  11. @property (nonatomic, strong) SREmptyDataView *sr_emptyDataView;
  12. - (void)sr_startLoadingData;
  13. - (void)sr_endLoadingData;
  14. - (void)sr_showEmptyDataView;
  15. - (void)sr_hideEmptyDataView;
  16. @end