// // YOUPAIHWTFCursorView.h // CodeTextDemo // // Created by 侯万 on 2018/12/13. // Copyright © 2018 小侯爷. All rights reserved. // #import @protocol TFCodeViewDelegate -(void)youpaifinputFinished:(NSString *)inputStr; @end NS_ASSUME_NONNULL_BEGIN /** 基础版 - 下划线 - 有光标 */ @interface YOUPAIHWTFCursorView : UIView // ----------------------------Data---------------------------- /// 当前输入的内容 @property (nonatomic, copy, readonly) NSString *code; @property(nonatomic,weak)iddelegate; @property (nonatomic, weak) UITextField *textField; // ----------------------------Method---------------------------- - (instancetype)initWithCount:(NSInteger)count margin:(CGFloat)margin haveBorder:(BOOL)isHave; - (instancetype)init UNAVAILABLE_ATTRIBUTE; + (instancetype)new UNAVAILABLE_ATTRIBUTE; @end // ------------------------------------------------------------------------ // -----------------------------HWCursorLabel------------------------------ // ------------------------------------------------------------------------ @interface HWCursorLabel : UILabel @property (nonatomic, weak, readonly) UIView *cursorView; - (void)startAnimating; - (void)stopAnimating; @end NS_ASSUME_NONNULL_END