0

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

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

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

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

状态错误

 // 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;



                          }
                      }];
4

1 回答 1

0

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

PACConsentStatus status = PACConsentInformation.sharedInstance.consentStatus;
于 2019-10-06T15:44:45.150 回答