RQVerifyView.h 404 B

1234567891011121314151617181920212223
  1. //
  2. // RQVerifyView.h
  3. // YueXueChe
  4. //
  5. // Created by 张嵘 on 2018/12/17.
  6. // Copyright © 2018 lee. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQVerifyView : UIView
  11. @property (weak, nonatomic) IBOutlet UITextField *verifyTextField;
  12. @property (weak, nonatomic) IBOutlet UIButton *verifyBtn;
  13. /// init
  14. + (instancetype)verifyView;
  15. @end
  16. NS_ASSUME_NONNULL_END