猎豆优选

ZLThumbnailViewController.h 765B

12345678910111213141516171819202122232425262728
  1. //
  2. // ZLThumbnailViewController.h
  3. // 多选相册照片
  4. //
  5. // Created by long on 15/11/30.
  6. // Copyright © 2015年 long. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class ZLAlbumListModel;
  10. @interface ZLThumbnailViewController : UIViewController
  11. @property (nonatomic, strong) UICollectionView *collectionView;
  12. @property (nonatomic, strong) UIView *bottomView;
  13. @property (nonatomic, strong) UIView *bline;
  14. @property (nonatomic, strong) UIButton *btnEdit;
  15. @property (nonatomic, strong) UIButton *btnPreView;
  16. @property (nonatomic, strong) UIButton *btnOriginalPhoto;
  17. @property (nonatomic, strong) UILabel *labPhotosBytes;
  18. @property (nonatomic, strong) UIButton *btnDone;
  19. //相册model
  20. @property (nonatomic, strong) ZLAlbumListModel *albumListModel;
  21. @end