//
//  TakePhotoView.h
//  test
//
//  Created by admin on 15/11/21.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol  TakePhotoViewDelegate <NSObject>

- (void)deletePhoto:(UIButton *)button;
- (void)createImagePicker;

@end

@interface TakePhotoView : UIView
@property (nonatomic, strong) NSMutableArray *allImages;

@property (nonatomic, strong) UIViewController *viewController;
@property (nonatomic, assign) id <TakePhotoViewDelegate>delegate;

- (UIButton *)createButtonWithImage:(UIImage *)image selector:(SEL)selector;
@end