SPSBTextField.h 371 B

12345678910111213141516171819202122
  1. //
  2. // SPSBTextField.h
  3. // 我的社保
  4. //
  5. // Created by shanp on 2021/4/21.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface SPSBTextField : UITextField
  10. @property (nonatomic, assign) NSUInteger spsb_maxCount;
  11. @property (nonatomic, strong, nullable) void(^spsb_afterJudge)(SPSBTextField *textField);
  12. - (void)textDidChange;
  13. @end
  14. NS_ASSUME_NONNULL_END