Files
Ash_AWord/Pods/MWPhotoBrowser/MWPhotoBrowser/Classes/MWGridCell.h
T
2015-04-02 09:37:44 +08:00

25 lines
513 B
Objective-C

//
// MWGridCell.h
// MWPhotoBrowser
//
// Created by Michael Waterfall on 08/10/2013.
//
//
#import <UIKit/UIKit.h>
#import "MWPhoto.h"
#import "MWGridViewController.h"
#import "PSTCollectionView.h"
@interface MWGridCell : PSTCollectionViewCell {}
@property (nonatomic, weak) MWGridViewController *gridController;
@property (nonatomic) NSUInteger index;
@property (nonatomic) id <MWPhoto> photo;
@property (nonatomic) BOOL selectionMode;
@property (nonatomic) BOOL isSelected;
- (void)displayImage;
@end