LoginViewController.h 514 B

1234567891011121314151617181920212223
  1. //
  2. // LoginViewController.h
  3. // AICity
  4. //
  5. // Created by 刘伟伟 on 2023/7/13.
  6. // Copyright © 2023 wei.z. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface LoginViewController : UIViewController
  11. @property (nonatomic, copy) void(^loginSuccessBlock)(void);
  12. @end
  13. @interface inputView : UIView
  14. @property(nonatomic,assign)int type;
  15. @property (nonatomic, strong, readonly) UITextField *textField;
  16. @property (nonatomic, strong) void(^tapBlock)(void);
  17. @end
  18. NS_ASSUME_NONNULL_END