12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // InputView.h
- // jiaPei
- //
- // Created by apple on 16/1/7.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @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) id<InputViewDelegate,UINavigationControllerDelegate,UIImagePickerControllerDelegate>delegate;
- -(id)initWithTitle:(NSString*)title ;
- -(void)show;
- /**removeFromSuperView
- */
- -(void)cancelAction;
- @end
- @protocol InputViewDelegate <NSObject>
- @optional
- -(void)InputView:(InputView*)view didGetImage:(UIImage*)image;
- -(void)InputViewWillPickImage:(InputView*)view;
- @end
|