33 lines
794 B
Objective-C
33 lines
794 B
Objective-C
//
|
||
// UMComGridViewerController.h
|
||
// UMCommunity
|
||
//
|
||
// Created by luyiyuan on 14/9/2.
|
||
// Copyright (c) 2014年 luyiyuan. All rights reserved.
|
||
//
|
||
|
||
#import <UIKit/UIKit.h>
|
||
#import "UMImageProgressView.h"
|
||
|
||
@interface UMComSimpleGridViewerController : UIViewController<UIScrollViewDelegate>
|
||
|
||
- (id)initWithArray:(NSArray *)array index:(NSUInteger)index;
|
||
|
||
- (void)setArray:(NSArray *)array index:(NSUInteger)index;
|
||
|
||
//默认一周(60*60*24*7)
|
||
- (void)setCacheSecondes:(NSTimeInterval)secondes;
|
||
|
||
@end
|
||
|
||
|
||
@interface UMZoomSimpleScrollView : UIScrollView<UIScrollViewDelegate,UMImageViewDelegate, UIActionSheetDelegate>
|
||
|
||
@property (nonatomic, strong) UMImageProgressView *imageView;
|
||
|
||
//默认一周(60*60*24*7)
|
||
- (void)setCacheSecondes:(NSTimeInterval)secondes;
|
||
|
||
- (void)startDownload;
|
||
|
||
@end |