1234567891011121314151617181920212223242526272829 |
- //
- // HUPhotoBrowserCell.h
- // HUPhotoBrowser
- //
- // Created by mac on 16/2/24.
- // Copyright (c) 2016年 hujewelz. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #define kPhotoBrowserCellID @"HUPhotoBrowserCell"
- static NSString * const kPhotoCellDidZommingNotification = @"kPhotoCellDidZommingNotification";
- static NSString * const kPhotoCellDidImageLoadedNotification = @"kPhotoCellDidImageLoadedNotification";
- @interface HUPhotoBrowserCell : UICollectionViewCell
- @property (nonatomic, weak) UIImageView *imageView;
- //@property (nonatomic, strong) UIImage *placeholderImage;
- @property (nonatomic, strong) NSIndexPath *indexPath;
- - (void)resetZoomingScale;
- //- (void)configureCellWithURLStrings:(NSString *)URLStrings;
- @property (nonatomic, copy) void(^tapActionBlock)(UITapGestureRecognizer *tapGesture);
- @end
|