MWGridCell.h 513 B

12345678910111213141516171819202122232425
  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. #import "PSTCollectionView.h"
  12. @interface MWGridCell : PSTCollectionViewCell {}
  13. @property (nonatomic, weak) MWGridViewController *gridController;
  14. @property (nonatomic) NSUInteger index;
  15. @property (nonatomic) id <MWPhoto> photo;
  16. @property (nonatomic) BOOL selectionMode;
  17. @property (nonatomic) BOOL isSelected;
  18. - (void)displayImage;
  19. @end