// // InputView.h // jiaPei // // Created by apple on 16/1/7. // Copyright © 2016年 JCZ. All rights reserved. // #import @protocol InputViewDelegate; /**功能简化为图片选择器。系统自带的加,照片库。 */ @interface InputView : UIView { // UILabel* titleLabel; // UIButton* closeBtn; UITextField* tf; UIView* contentVi; // UIButton* btn0,*btn1; } @property(nonatomic,assign)int type ;//媒体类型。0是照片库。1是照相机。 @property(nonatomic,assign) iddelegate; -(id)initWithTitle:(NSString*)title ; -(void)show; /**removeFromSuperView */ -(void)cancelAction; @end @protocol InputViewDelegate @optional -(void)InputView:(InputView*)view didGetImage:(UIImage*)image; -(void)InputViewWillPickImage:(InputView*)view; @end