1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // PageLoadFootView.h
- // wq
- //
- // Created by weqia on 13-7-22.
- // Copyright (c) 2013年 Weqia. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <QuartzCore/QuartzCore.h>
- @protocol PageLoadFootViewDelegate;
- @interface PageLoadFootView : UIView
- {
- UIImageView * image;
- UILabel * loadText;
- UILabel * finishText;
-
- BOOL isLoading;
- }
- @property(nonatomic,retain) id<PageLoadFootViewDelegate> delegate;
- -(void)animmation;
- -(void)begin;
- -(void)end;
- -(void) scrollViewDidEndDecelerating:(UIScrollView *)scrollView;
- -(void) loadFinish;
- @end
- @protocol PageLoadFootViewDelegate <NSObject>
- -(void)footViewBeginLoad:(PageLoadFootView*)footView;
- @end
|