RefreshAbleView.h 359 B

1234567891011121314151617181920
  1. //
  2. // RefreshAbleView.h
  3. // CommonLibrary
  4. //
  5. // Created by Alexi on 15-2-4.
  6. // Copyright (c) 2015年 Alexi Chen. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @protocol RefreshAbleView <NSObject>
  10. @property (nonatomic, assign) NSInteger refreshHeight;
  11. - (void)willLoading;
  12. - (void)releaseLoading;
  13. - (void)loading;
  14. - (void)loadingOver;
  15. @end