TapCommon-Unity/Plugins/iOS/TapCommonSDK.framework/Headers/TDSAccountManager.h

32 lines
969 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

//
// TDSAccountManager.h
// TapCommonSDK
//
// Created by 黄驿峰 on 2023/7/20.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
FOUNDATION_EXTERN NSNotificationName const TapUserLoginNotification;
FOUNDATION_EXTERN NSNotificationName const TapUserLogoutNotification;
FOUNDATION_EXTERN NSNotificationName const TDSUserLoginNotification;
FOUNDATION_EXTERN NSNotificationName const TDSUserInfoUpdateNotification;
FOUNDATION_EXTERN NSNotificationName const TDSUserLogoutNotification;
FOUNDATION_EXTERN NSNotificationName const TDSCombineUserIDChangedNotification;
@interface TDSAccountManager : NSObject
+ (TDSAccountManager *)shareInstance;
@property (nonatomic, strong, nullable) NSDictionary *tapUserDic;
@property (nonatomic, strong, nullable) NSDictionary *tdsUserDic;
// 获得聚合的UserID目前是TapUser和TDSUser), 是一个Json字符串
@property (nonatomic, strong, readonly) NSString *combineUserID;
@end
NS_ASSUME_NONNULL_END