PageLoadFootView.h 680 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // PageLoadFootView.h
  3. // wq
  4. //
  5. // Created by weqia on 13-7-22.
  6. // Copyright (c) 2013年 Weqia. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <QuartzCore/QuartzCore.h>
  10. @protocol PageLoadFootViewDelegate;
  11. @interface PageLoadFootView : UIView
  12. {
  13. UIImageView * image;
  14. UILabel * loadText;
  15. UILabel * finishText;
  16. BOOL isLoading;
  17. }
  18. @property(nonatomic,retain) id<PageLoadFootViewDelegate> delegate;
  19. -(void)animmation;
  20. -(void)begin;
  21. -(void)end;
  22. -(void) scrollViewDidEndDecelerating:(UIScrollView *)scrollView;
  23. -(void) loadFinish;
  24. @end
  25. @protocol PageLoadFootViewDelegate <NSObject>
  26. -(void)footViewBeginLoad:(PageLoadFootView*)footView;
  27. @end