gpt4 book ai didi

ios - Google 同意 SDK : How to Save 'Status' Array in UserDefaults?

转载 作者:行者123 更新时间:2023-11-29 05:46:53 26 4
gpt4 key购买 nike

此代码中未使用变量“status”。因此我无法检查用户的同意选择。

我必须将“状态数组”存储在默认值中。一旦当前状态在数组中可用,它将不会显示同意书。如果没有,那么我们将显示表单并将该状态添加到默认状态数组中。

现在我无法检查用户的同意选择,并且每次加载应用程序时都会加载表单。

这可能会解决问题,但我不知道如何在代码中做到这一点。有什么建议么?

status error

 // Load Form
[form loadWithCompletionHandler:^(NSError *_Nullable error) {
NSLog(@"Load complete. Error: %@", error);
if (error) {
// Handle error.
} else {
// Load successful.


[form presentFromViewController:self
dismissCompletion:^(NSError *_Nullable error, BOOL userPrefersAdFree) {
if (error) {
// Handle error.
} else if (userPrefersAdFree) {
// The user prefers to use a paid version of the app.



} else {

// Check the user's consent choice.
PACConsentStatus status =
PACConsentInformation.sharedInstance.consentStatus;


// store status array in defaults
// once current status is available in array we will not show that form
// if not then we will show form and add that status in defaults status array





//Storing publisher managed consent
PACConsentInformation.sharedInstance.consentStatus = PACConsentStatusPersonalized;



}
}];

最佳答案

我对 iOS 知之甚少,但我猜你只需要把作业写成一行:

PACConsentStatus status = PACConsentInformation.sharedInstance.consentStatus;

关于ios - Google 同意 SDK : How to Save 'Status' Array in UserDefaults?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56060113/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com