1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // TZAssetCell.h
- // TZImagePickerController
- //
- // Created by 谭真 on 15/12/24.
- // Copyright © 2015年 谭真. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <Photos/Photos.h>
- typedef enum : NSUInteger {
- TZAssetCellTypePhoto = 0,
- TZAssetCellTypeLivePhoto,
- TZAssetCellTypePhotoGif,
- TZAssetCellTypeVideo,
- TZAssetCellTypeAudio,
- } TZAssetCellType;
- @class TZAssetModel;
- @interface TZAssetCell : UICollectionViewCell
- @property (weak, nonatomic) UIButton *selectPhotoButton;
- @property (nonatomic, strong) TZAssetModel *model;
- @property (nonatomic, copy) void (^didSelectPhotoBlock)(BOOL);
- @property (nonatomic, assign) TZAssetCellType type;
- @property (nonatomic, assign) BOOL allowPickingGif;
- @property (nonatomic, copy) NSString *representedAssetIdentifier;
- @property (nonatomic, assign) PHImageRequestID imageRequestID;
- @property (nonatomic, copy) NSString *photoSelImageName;
- @property (nonatomic, copy) NSString *photoDefImageName;
- @property (nonatomic, assign) BOOL showSelectBtn;
- @end
- @class TZAlbumModel;
- @interface TZAlbumCell : UITableViewCell
- @property (nonatomic, strong) TZAlbumModel *model;
- @property (weak, nonatomic) UIButton *selectedCountButton;
- @end
- @interface TZAssetCameraCell : UICollectionViewCell
- @property (nonatomic, strong) UIImageView *imageView;
- @end
|