GALCaptcha.h 397 B

1234567891011121314151617181920
  1. //
  2. // GALCaptcha.h
  3. // shiku_im
  4. //
  5. // Created by JayLuo on 2020/1/14.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface GALCaptcha : UIView
  11. @property (nonatomic, strong)NSArray *CatArray;//验证码素材库
  12. @property (nonatomic, strong)NSMutableString *CatString;//验证码字符串
  13. -(void)refresh;
  14. @end
  15. NS_ASSUME_NONNULL_END