TakePhotoView.h 550 Bytes
Newer Older
1 2
//
//  TakePhotoView.h
3
//  test
4
//
5
//  Created by admin on 15/11/21.
6 7 8 9 10
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>

11
@protocol  TakePhotoViewDelegate <NSObject>
admin's avatar
admin committed
12

13 14
- (void)deletePhoto:(UIButton *)button;
- (void)createImagePicker;
admin's avatar
admin committed
15 16 17

@end

18 19
@interface TakePhotoView : UIView
@property (nonatomic, strong) NSMutableArray *allImages;
admin's avatar
admin committed
20

21 22
@property (nonatomic, strong) UIViewController *viewController;
@property (nonatomic, assign) id <TakePhotoViewDelegate>delegate;
admin's avatar
admin committed
23

admin's avatar
admin committed
24
- (UIButton *)createButtonWithImage:(UIImage *)image;
25
@end