DCTZPhotoPickerController.h 617 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 DCTZAlbumModel;
  10. @interface DCTZPhotoPickerController : UIViewController
  11. @property (nonatomic, assign) BOOL isFirstAppear;
  12. @property (nonatomic, assign) NSInteger columnNumber;
  13. @property (nonatomic, strong) DCTZAlbumModel *model;
  14. // 窦 解决iOS14下 相册在可选照片状态下 修改后不更新的Bug 新增一个刷新UI的函数
  15. -(void)optionModeUpdateUI;
  16. @end
  17. @interface DCTZCollectionView : UICollectionView
  18. @end