ZJKeyBoardAccessoryView.h 591 Bytes
Newer Older
Sandy's avatar
Sandy committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//
//  ZJKeyBoardAccessoryView.h
//  Lighting
//
//  Created by Javen on 2017/4/17.
//  Copyright © 2017年 上海勾芒科技有限公司. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface ZJKeyBoardAccessoryView : UIView
@property (strong, nonatomic) NSMutableArray *arrSelectedAssets;
@property (strong, nonatomic) NSMutableArray *arrSelectedPhotos;
@property (nonatomic, copy) void (^blockFinishSelected)(void);

Sandy's avatar
Sandy committed
16 17 18 19 20
/**
 删除指定下标的图片

 @param index 下标
 */
Sandy's avatar
Sandy committed
21
- (void)deletePhotoWithIndex:(NSInteger)index;
Sandy's avatar
Sandy committed
22 23 24 25 26

/**
 删除所有的图片
 */
- (void)deleteAll;
Sandy's avatar
Sandy committed
27
@end