HWTFCodeView.h 718 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // CodeTextDemo
  3. //
  4. // Created by 小侯爷 on 2018/9/20.
  5. // Copyright © 2018年 小侯爷. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @class HWTFCodeView;
  10. @protocol HWTFCodeViewDelegate <NSObject>
  11. - (void)codeView:(HWTFCodeView *)codeView inputFnish:(NSString *)text;
  12. @end
  13. /**
  14. * 基础版 - 下划线
  15. */
  16. @interface HWTFCodeView : UIView
  17. /// 当前输入的内容
  18. @property (nonatomic, copy, readonly) NSString *code;
  19. - (instancetype)initWithCount:(NSInteger)count margin:(CGFloat)margin;
  20. - (instancetype)init UNAVAILABLE_ATTRIBUTE;
  21. + (instancetype)new UNAVAILABLE_ATTRIBUTE;
  22. @property (nonatomic, weak) id<HWTFCodeViewDelegate> delegate;
  23. @end
  24. NS_ASSUME_NONNULL_END