AJPhotoGroupCell.h 539 B

12345678910111213141516171819202122232425262728
  1. //
  2. // AJPhotoGroupCell.h
  3. // AJPhotoPicker
  4. //
  5. // Created by AlienJunX on 15/11/2.
  6. // Copyright (c) 2015 AlienJunX
  7. //
  8. // This source code is licensed under the MIT-style license found in the
  9. // LICENSE file in the root directory of this source tree.
  10. //
  11. #import <UIKit/UIKit.h>
  12. #import "TZImageManager.h"
  13. @class ALAssetsGroup;
  14. @interface AJPhotoGroupCell : UITableViewCell
  15. @property (nonatomic, strong) UIButton *selectButton;
  16. /**
  17. * 显示相册信息
  18. *
  19. * @param model 相册
  20. */
  21. - (void)bindModel:(TZAlbumModel *)model;
  22. @end