Skip to content
This repository has been archived by the owner on Oct 21, 2022. It is now read-only.

bug fix for iOS consent form missing personalized ads option #35

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion PersonalizedAdConsent/PersonalizedAdConsent/PACView.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ static PACFormKey const PACFormKeyPlatform = @"plat";
/// Loads and displays the consent form.
@interface PACView : UIView<UIWebViewDelegate>
@property(nonatomic, nullable) PACDismissCompletion dismissCompletion;
@property(nonatomic) BOOL shouldNonPersonalizedAds;
@property(nonatomic) BOOL shouldOfferPersonalizedAds;
@property(nonatomic) BOOL shouldOfferNonPersonalizedAds;
@property(nonatomic) BOOL shouldOfferAdFree;

/// Loads the view with form information and calls the handler on the main queue.
Expand Down