| 123456789101112131415161718192021 |
- //
- // DKPhotoPickerGroupViewController.h
- // DKAssetsPickerDemo
- //
- // Copyright (c) 2014年 com.zixue101.www. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "DKPhotoPickerViewController.h"
- @interface DKPhotoPickerGroupViewController : UIViewController
- @property (nonatomic , weak) id<DKPhotoPickerViewControllerDelegate> delegate;
- @property (nonatomic , assign) PickerViewShowStatus status;
- @property (nonatomic , assign) NSInteger minCount;
- @property (nonatomic , assign) NSInteger cameraCount;
- // 记录选中的值
- @property (strong,nonatomic) NSArray *selectAsstes;
- @end
|