| | |
| | | /** |
| | | * 初始化(20221027 新增回掉) |
| | | */ |
| | | +(void)initWithCompletionHandler:(void (^_Nullable)())completionHandler; |
| | | +(void)initWithCompletionHandler:(void (^_Nullable)(void))completionHandler; |
| | | |
| | | /** |
| | | * 设置调试模式 |
| | |
| | | /** |
| | | * 设置调试模式 |
| | | * |
| | | * @param isDebugMode |
| | | * isDebugMode |
| | | */ |
| | | +(void)setDebugMode:(BOOL)isDebugMode; |
| | | |
| | |
| | | /** |
| | | * 设置clientId |
| | | * |
| | | * @param clientId |
| | | * clientId |
| | | */ |
| | | +(void)setClientId:(NSString*)clientId; |
| | | |
| | |
| | | + (void)showDidomiUI; |
| | | |
| | | + (void)showConsentPreferences; |
| | | |
| | | //方法来控制同意设置按钮的显示和隐藏。如果不在生效地区(一般指欧盟),回调结果会返回false,此时应该隐藏按钮,否则返回true则需要显示 |
| | | + (void)checkConsentPreferencesWithCompletion:(void (^)(NSError *error, BOOL isShow))completionBlock; |
| | | |
| | | @end |
| | | NS_ASSUME_NONNULL_END |