MOFirstInfoSetVC.h 347 B

12345678910111213141516171819202122
  1. //
  2. // MOFirstInfoSetVC.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2023/10/9.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MOFirstInfoSetVC : UIViewController
  10. /// 预输入用户数据,第三方登录的才有
  11. #if !TARGET_IPHONE_SIMULATOR
  12. - (void)preFillUpUserData:(SSDKUser *)userData;
  13. #endif
  14. @end
  15. NS_ASSUME_NONNULL_END