Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

BuzzAd iOS SDK에서는 2가지 ATT 권한 획득 팝업을 위한 API를 제공합니다.

  • 사용자 프로필 설정 시점에 ATT 권한 팝업 노출

    Code Block
    // Objective-C
    [BuzzAdBenefit setUserProfile:userProfile shouldShowAppTrackingTransparencyDialog:YES];
    
    // Swift
    BuzzAdBenefit.setUserProfile(userProfile, shouldShowAppTrackingTransparencyDialog:true)  (IDE 확인 필요)

  • Feed 지면 진입하는 시점에 ATT 권한 팝업 노출

    Code Block
    //Objective-C
    BABFeedConfig *config = [[BABFeedConfig alloc] initWithUnitId:YOUR_FEED_UNIT_ID];
    config.shouldShowAppTrackingTransparencyGuideBanner = YES;
    
    //Swift
    let config = BABFeedConfig(unitId: YOUR_FEED_UNIT_ID)
    config.shouldShowAppTrackingTransparencyGuideBanner = true

...