1234567891011121314151617181920212223 |
- //
- // MWGridCell.h
- // MWPhotoBrowser
- //
- // Created by Michael Waterfall on 08/10/2013.
- //
- //
- #import <UIKit/UIKit.h>
- #import "MWPhoto.h"
- #import "MWGridViewController.h"
- @interface MWGridCell : UICollectionViewCell {}
- @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
|