1234567891011121314151617181920212223 |
- //
- // RQVerifyView.h
- // YueXueChe
- //
- // Created by 张嵘 on 2018/12/17.
- // Copyright © 2018 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RQVerifyView : UIView
- @property (weak, nonatomic) IBOutlet UITextField *verifyTextField;
- @property (weak, nonatomic) IBOutlet UIButton *verifyBtn;
- /// init
- + (instancetype)verifyView;
- @end
- NS_ASSUME_NONNULL_END
|