Files
ifish/Ifish/UMCommunity/UMCommunitySDK/UMCommunityUI/simple/CustomView/GridView/UMComSimpleGridViewerController.h
T
2017-08-15 16:59:01 +08:00

33 lines
794 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// 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