123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // FKBindIdCardPickVIew.h
- // FirstLink
- //
- // Created by jack on 15/11/3.
- // Copyright © 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FKIdCardCenter.h"
- #define MORE_ID_BTN_TAG 2001
- #define SAVE_BTN_TAG 2002
- #define CANCEL_BTN_TAG 2003
- typedef NS_ENUM(NSUInteger, kPickCellActionType) {
- kAcitonTypePickFace = 500, // 选择正面照
- kAcitonTypePickInverse, // 选择反面照片
- kAcitonTypeRemoveFace, // 删除正面照
- kAcitonTypeRemoveInverse, // 删除反面照
- kAcitonTypeMoreIdCard, // 选择更多身份证
- kAcitonTypeSave, // 保存
- kAcitonTypeCancel, // 取消
- };
- @protocol FKBindIdCardPickCellDelegate <NSObject>
- - (void)didClickBtnWithActionType:(kPickCellActionType)actionType;
- @end
- @interface FKBindIdCardPickCell : UITableViewCell
- <UITextFieldDelegate>
- @property (nonatomic, weak) id <FKBindIdCardPickCellDelegate> delegate;
- @property (nonatomic, strong) UIImageView *faceImgView;
- @property (nonatomic, strong) UIImageView *inverseImgView;
- @property (nonatomic, strong) UIButton *faceRemoveBtn;
- @property (nonatomic, strong) UIButton *inverseRemoveBtn;
- @property (nonatomic, strong) UIButton *cancelBtn;
- @property (nonatomic, strong) UIButton *moreIdBtn;
- @property (nonatomic, strong) UITextField *textField;
- @property (nonatomic, strong) UIButton *saveBtn;
- + (NSString *)cdnImgUrlStrWithUrlString:(NSString *)url;
- @end
|