123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // AJPhotoListCell.h
- // AJPhotoPicker
- //
- // Created by AlienJunX on 15/11/2.
- // Copyright (c) 2015 AlienJunX
- //
- // This source code is licensed under the MIT-style license found in the
- // LICENSE file in the root directory of this source tree.
- //
- #import <UIKit/UIKit.h>
- #import "TZImageManager.h"
- @class ALAsset;
- @interface AJPhotoListCell : UICollectionViewCell
- @property (nonatomic, strong) UIButton *selectButton;
- /**
- * 显示照片
- *
- * @param model 照片
- * @param selectionFilter 过滤器
- * @param isSelected YES选中,NO取消选中
- */
- - (void)bind:(TZAssetModel *)model selectionFilter:(NSPredicate*)selectionFilter isSelected:(BOOL)isSelected;
- /**
- * 选中
- *
- * @param isSelected YES选中,NO取消选中
- */
- - (void)isSelected:(BOOL)isSelected;
- //点击按钮
- @property (nonatomic,copy) void (^didClckSelectBut)(BOOL isSelect);
- @end
|