// // 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); /** 删除指定下标的图片 @param index 下标 */ - (void)deletePhotoWithIndex:(NSInteger)index; /** 删除所有的图片 */ - (void)deleteAll; @end