cdts/xdts-ios 3/Pods/UMDevice/UMDevice_2.2.0/UMDevice.framework/Headers/UMZid.h
2023-07-27 09:20:00 +08:00

30 lines
684 B
Objective-C
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.

//
// UMZid.h
// UMZid
//
// Created by UMZid on 8/29/20.
// Copyright © 2020 UMZid. All rights reserved.
// v2.2.0
#import <Foundation/Foundation.h>
@interface UMZid : NSObject
/// SDK初始化异步请求uToken
/// @param appkey appkey
/// @param completion 请求uToken的回调uToken为返回值如果失败uToken为空字符串@“”
+ (void)initWithAppKey:(NSString *)appkey completion:(void (^)(NSString *uToken))completion;
/// 同步获得uToken失败返回空字符串@“”
+ (NSString *)getZID;
/// 获取SDK版本号
+ (NSString *)getSDKVersion;
/// 获得resetToken
+ (NSString *)getResetToken;
/// 获得at
+ (NSString *)getATStr;
@end