123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #import <UIKit/UIKit.h>
- @class ReaderThumbView;
- @interface ReaderThumbRequest : NSObject <NSObject>
- @property (nonatomic, strong, readonly) NSURL *fileURL;
- @property (nonatomic, strong, readonly) NSString *guid;
- @property (nonatomic, strong, readonly) NSString *password;
- @property (nonatomic, strong, readonly) NSString *cacheKey;
- @property (nonatomic, strong, readonly) NSString *thumbName;
- @property (nonatomic, strong, readwrite) ReaderThumbView *thumbView;
- @property (nonatomic, assign, readonly) NSUInteger targetTag;
- @property (nonatomic, assign, readonly) NSInteger thumbPage;
- @property (nonatomic, assign, readonly) CGSize thumbSize;
- @property (nonatomic, assign, readonly) CGFloat scale;
- + (instancetype)newForView:(ReaderThumbView *)view fileURL:(NSURL *)url password:(NSString *)phrase guid:(NSString *)guid page:(NSInteger)page size:(CGSize)size;
- @end
|