TZPhotoPickerController.h 555 B

12345678910111213141516171819202122232425
  1. //
  2. // TZPhotoPickerController.h
  3. // TZImagePickerController
  4. //
  5. // Created by 谭真 on 15/12/24.
  6. // Copyright © 2015年 谭真. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class TZAlbumModel;
  10. @interface TZPhotoPickerController : UIViewController
  11. @property (nonatomic, assign) BOOL isFirstAppear;
  12. @property (nonatomic, assign) NSInteger columnNumber;
  13. @property (nonatomic, strong) TZAlbumModel *model;
  14. @property (nonatomic, copy) void (^backButtonClickHandle)(TZAlbumModel *model);
  15. @end
  16. @interface TZCollectionView : UICollectionView
  17. @end