18 lines
306 B
Objective-C
18 lines
306 B
Objective-C
//
|
|
// ViewController.h
|
|
// YUMI
|
|
//
|
|
// Created by admin on 2023/3/9.
|
|
//
|
|
|
|
@interface TabbarViewController : UITabBarController
|
|
@property (nonatomic,assign) BOOL isFormLogin;
|
|
///邀请码
|
|
@property (nonatomic,copy) NSString *inviteCode;
|
|
|
|
- (void)registerSocialCallBack;
|
|
- (void)unsignSocialCallback;
|
|
|
|
@end
|
|
|