CodeInputView.h 776 B

1234567891011121314151617181920
  1. //
  2. // CodeInputView.h
  3. // JDZBorrower
  4. //
  5. // Created by WangXueqi on 2018/4/20.
  6. // Copyright © 2018年 JingBei. All rights reserved.
  7. // 使用: let viewCode = CodeInputView(frame: CGRect(x: (ScreenWidth - 260)/2, y: 172, width: 260 , height: 41), inputType: 6) { (str) in}
  8. // viewContent.addSubview(viewCode!);
  9. #import <UIKit/UIKit.h>
  10. typedef void(^SelectCodeBlock)(NSString *);
  11. @interface CodeInputView : UIView
  12. @property(nonatomic,copy)SelectCodeBlock CodeBlock;
  13. @property(nonatomic,assign)NSInteger inputNum;//验证码输入个数(4或6个)
  14. @property(nonatomic,assign)CGFloat K_W;//验证码输入个数(4或6个)
  15. - (instancetype)initWithFrame:(CGRect)frame inputType:(NSInteger)inputNum selectCodeBlock:(SelectCodeBlock)CodeBlock;
  16. - (void)endEdit;
  17. @end