Files
Liubing\LB 3d8d4d18f3 first commit
先修复一下,错误的场景

删除不必要的钓场资产

修复into场景

update:更新meta文件,修复报错

update:修复资源

修复第一章节建造

修复建造第三章

update:删除多余内容

update:更新README.md

update:还原图标

update:更新README

update:更新配置
2026-04-28 02:17:22 +08:00

46 lines
902 B
Objective-C

//
// TAEventTracker.h
// ThinkingSDK
//
// Created by Yangxiongon 2022/6/19.
//
#import <Foundation/Foundation.h>
#if __has_include(<ThinkingSDK/TDConstant.h>)
#import <ThinkingSDK/TDConstant.h>
#else
#import "TDConstant.h"
#endif
#import "TDSecurityPolicy.h"
#import "ThinkingAnalyticsSDKPrivate.h"
NS_ASSUME_NONNULL_BEGIN
@class TAEventTracker;
@interface TAEventTracker : NSObject
+ (dispatch_queue_t)td_networkQueue;
- (instancetype)initWithQueue:(dispatch_queue_t)queue instanceToken:(NSString *)instanceToken;
- (void)flush;
- (void)track:(NSDictionary *)event immediately:(BOOL)immediately saveOnly:(BOOL)isSaveOnly;
- (NSInteger)saveEventsData:(NSDictionary *)data;
- (void)_asyncWithCompletion:(void(^)(void))completion;
- (void)syncSendAllData;
#pragma mark - UNAVAILABLE
- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)new NS_UNAVAILABLE;
@end
NS_ASSUME_NONNULL_END