HUPhotoBrowserCell.h 824 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // HUPhotoBrowserCell.h
  3. // HUPhotoBrowser
  4. //
  5. // Created by mac on 16/2/24.
  6. // Copyright (c) 2016年 hujewelz. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #define kPhotoBrowserCellID @"HUPhotoBrowserCell"
  10. static NSString * const kPhotoCellDidZommingNotification = @"kPhotoCellDidZommingNotification";
  11. static NSString * const kPhotoCellDidImageLoadedNotification = @"kPhotoCellDidImageLoadedNotification";
  12. @interface HUPhotoBrowserCell : UICollectionViewCell
  13. @property (nonatomic, weak) UIImageView *imageView;
  14. //@property (nonatomic, strong) UIImage *placeholderImage;
  15. @property (nonatomic, strong) NSIndexPath *indexPath;
  16. - (void)resetZoomingScale;
  17. //- (void)configureCellWithURLStrings:(NSString *)URLStrings;
  18. @property (nonatomic, copy) void(^tapActionBlock)(UITapGestureRecognizer *tapGesture);
  19. @end