12345678910111213141516171819202122 |
- //
- // SPSBTextField.h
- // 我的社保
- //
- // Created by shanp on 2021/4/21.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface SPSBTextField : UITextField
- @property (nonatomic, assign) NSUInteger spsb_maxCount;
- @property (nonatomic, strong, nullable) void(^spsb_afterJudge)(SPSBTextField *textField);
- - (void)textDidChange;
- @end
- NS_ASSUME_NONNULL_END
|