1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // YOUPAIHWTFCursorView.h
- // CodeTextDemo
- //
- // Created by 侯万 on 2018/12/13.
- // Copyright © 2018 小侯爷. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol TFCodeViewDelegate <NSObject>
- -(void)youpaifinputFinished:(NSString *)inputStr;
- @end
- NS_ASSUME_NONNULL_BEGIN
- /**
- 基础版 - 下划线 - 有光标
- */
- @interface YOUPAIHWTFCursorView : UIView
- // ----------------------------Data----------------------------
- /// 当前输入的内容
- @property (nonatomic, copy, readonly) NSString *code;
- @property(nonatomic,weak)id<TFCodeViewDelegate>delegate;
- @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
|