|
//
// UIScrollView+GifPullToRefresh.h
// CHGifRefreshControl
//
// Created by HangChen on 12/1/13.
// Copyright (c) 2013 Hang Chen (https://github.com/cyndibaby905)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#import <UIKit/UIKit.h>
@interface CHGifRefreshControl : UIView
@property (nonatomic, weak) UIScrollView *scrollView;
@property (nonatomic, copy) void (^pullToRefreshActionHandler)(void);
@property (nonatomic, strong) NSArray *drawingImgs;
@property (nonatomic, strong) NSArray *loadingImgs;
@property (nonatomic, assign) CGFloat originalContentInsectY;
@property (nonatomic, assign) CGFloat topicFrangePageInsectY; //问吧专用insectTop
- (void)endLoading:(void (^)(void))animate completion:(void (^)(void))completion;
- (void)manulHeadRefresh;
@end
@interface UIScrollView (GifPullToRefresh)
@property(nonatomic,strong)CHGifRefreshControl *refreshControl;
- (void)addPullToRefreshWithDrawingImgs:(NSArray*)drawingImgs andLoadingImgs:(NSArray*)loadingImgs andActionHandler:(void (^)(void))actionHandler;
- (void)removePullToRefresh;
- (void)didFinishPullToRefresh:(void (^)(void))animate completion:(void (^)(void))completion;
@end
|