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

#import <UIKit/UIKit.h>


@protocol TakePhotoDelegate <NSObject>

@optional
- (void)takePhotoShowPicture:(UIButton *)btn;

@end

@interface TakePhotoView : UIView <UINavigationControllerDelegate, UIImagePickerControllerDelegate>
{
    // 标识被编辑的按钮 -1 为添加新的按钮
    NSInteger editTag;
}
@property (nonatomic, strong) UIButton *btn;
@property (nonatomic, assign) NSInteger editTag;

@property (nonatomic, strong) id <TakePhotoDelegate>delegate;

- (BOOL)deleClose:(UIButton *)btn;

@end