DKPhotoPickerAssetsViewController.h 735 B

123456789101112131415161718192021222324
  1. //
  2. // DKPhotoPickerAssetsViewController.h
  3. // DKAssetsPickerDemo
  4. //
  5. // Copyright (c) 2014年 com.zixue101.www. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "DKPhotoPickerCommon.h"
  9. #import "DKPhotoPickerGroupViewController.h"
  10. @class DKPhotoPickerGroup;
  11. @interface DKPhotoPickerAssetsViewController : UIViewController
  12. @property (strong,nonatomic) DKPhotoPickerGroupViewController *groupVc;
  13. @property (nonatomic , assign) PickerViewShowStatus status;
  14. @property (nonatomic , strong) DKPhotoPickerGroup *assetsGroup;
  15. @property (nonatomic , assign) NSInteger minCount;
  16. @property (nonatomic , assign) NSInteger cameraCount;
  17. // 需要记录选中的值的数据
  18. @property (strong,nonatomic) NSArray *selectPickerAssets;
  19. @end