|
//
// AsyncImageScrollView.h
// ThePaperHD
//
// Created by scar1900 on 15/3/5.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol AsyImageScrollDelegate <NSObject>
- (void)singleTapGestureHandler;
@end
@interface AsyncImageScrollView : TPHttpController
@property(nonatomic, strong)UIImageView *imageView;
@property(nonatomic, strong)NSString* imageId;
@property(nonatomic, strong)NSString *imageUrl;
@property(nonatomic, assign)BOOL isListMore;
@property(nonatomic, weak)id<AsyImageScrollDelegate> imageDelegate;
@property(nonatomic, assign)CGSize imageSize;
@property(nonatomic, assign)NSInteger index;
@property(nonatomic, strong)UIScrollView *scrollView;
@property(nonatomic, strong)NSData *gifData;
- (void) rechangeInitRdct;
@end
|