DKPhotoPickerGroupViewController.h 591 B

123456789101112131415161718192021
  1. //
  2. // DKPhotoPickerGroupViewController.h
  3. // DKAssetsPickerDemo
  4. //
  5. // Copyright (c) 2014年 com.zixue101.www. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "DKPhotoPickerViewController.h"
  9. @interface DKPhotoPickerGroupViewController : UIViewController
  10. @property (nonatomic , weak) id<DKPhotoPickerViewControllerDelegate> delegate;
  11. @property (nonatomic , assign) PickerViewShowStatus status;
  12. @property (nonatomic , assign) NSInteger minCount;
  13. @property (nonatomic , assign) NSInteger cameraCount;
  14. // 记录选中的值
  15. @property (strong,nonatomic) NSArray *selectAsstes;
  16. @end