2
0

MWGridCell.h 482 B

1234567891011121314151617181920212223
  1. //
  2. // MWGridCell.h
  3. // MWPhotoBrowser
  4. //
  5. // Created by Michael Waterfall on 08/10/2013.
  6. //
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MWPhoto.h"
  10. #import "MWGridViewController.h"
  11. @interface MWGridCell : UICollectionViewCell {}
  12. @property (nonatomic, weak) MWGridViewController *gridController;
  13. @property (nonatomic) NSUInteger index;
  14. @property (nonatomic) id <MWPhoto> photo;
  15. @property (nonatomic) BOOL selectionMode;
  16. @property (nonatomic) BOOL isSelected;
  17. - (void)displayImage;
  18. @end