| 1234567891011121314151617181920212223 |
- //
- // LoginViewController.h
- // AICity
- //
- // Created by 刘伟伟 on 2023/7/13.
- // Copyright © 2023 wei.z. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface LoginViewController : UIViewController
- @property (nonatomic, copy) void(^loginSuccessBlock)(void);
- @end
- @interface inputView : UIView
- @property(nonatomic,assign)int type;
- @property (nonatomic, strong, readonly) UITextField *textField;
- @property (nonatomic, strong) void(^tapBlock)(void);
- @end
- NS_ASSUME_NONNULL_END
|