mergemilitary/Assets/Plugins/ToukaGames/ToponSDK/kuaishou/KSAdSDK.framework/Headers/KSUPrivateDataController.h

32 lines
740 B
Objective-C
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// KSUPrivateDataController.h
// AFNetworking
//
// Created by chun on 2021/8/4.
//
#import <Foundation/Foundation.h>
#import <KSUDevice/KSAdDeviceInfoEnum.h>
@interface KSUPrivateDataController : NSObject
+ (KSUPrivateDataController *)sharedInstance;
//返回格式{"userSet":true|false,"value":"xxxx","errorCode":KSAdPrivateDataErrorCode}
//定义见KSAdDeviceInfoEnum.h->KSAdPrivateDataErrorCode
- (NSString *)getIdfa;
- (NSString *)getIdfv;
- (NSString *)getIp;
- (NSString *)getMac;
//value:{latitude:xxx, longitude:xxx}
- (NSString *)getLocation;
//value:{latitude:xxx, longitude:xxx}获取媒体设置的location
- (NSString *)getMediaLocation;
//value:[{ssid:xxx, bssid:xxx},...]
- (NSString *)getWifiList;
@end