|
//
// TPImageScannerController.h
// ThePaperHD
//
// Created by scar1900 on 15/3/5.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPHttpController.h"
typedef enum {
contentImageScannerType = 1, //图集模式
imageScanType = 2 //图集新闻浏览
}
imageScannerType;
@protocol imageScanerDelegate <NSObject>
@optional
- (void)imageContentClick:(imageObjectBO*)imageBO;
@end
@interface TPImageScannerController : TPHttpController<UIGestureRecognizerDelegate>
@property(nonatomic, strong)NSMutableArray *imageBOList;
@property(nonatomic, strong)NSMutableArray *hotList;
@property(nonatomic, assign)NSInteger currentIndex;
@property(nonatomic, strong)UIView *toolBarView;
@property(nonatomic, strong)UIButton *saveButton;
@property(nonatomic, assign)imageScannerType type;
@property(nonatomic, weak)id<imageScanerDelegate> delegate;
@property(nonatomic, strong)UILabel *numLabel;
@property(nonatomic, strong)CAGradientLayer *gradientLayer;
@property(nonatomic, strong)UIButton *backBtn;
@property(nonatomic, strong)NSMutableArray *pagesList;
@property(nonatomic, strong)UISwipeGestureRecognizer *rightGesture;
@property(nonatomic, strong)UISwipeGestureRecognizer *rightSwipe;
@end
|