IDFA 지원 (iOS만 해당)
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
사용자 메시지 플랫폼 (UMP) SDK를 사용하면 앱 추적 투명성(ATT)에 대한 동의를 요청하기 전에 사용자에게 IDFA 메시지를 표시할 수 있습니다. IDFA 메시지는 앱에서 식별자를 사용하는 방식을 사용자에게 보여줍니다.
이 가이드에서는 UMP SDK를 사용하여 IDFA 메시지를 표시하는 방법을 설명합니다.
기본 요건
시작하기 전에 다음 작업을 완료했는지 확인하세요.
Info.plist 업데이트
맞춤 알림 메시지를 표시하려면 다음 단계를 따르세요.
Info.plist
파일을 엽니다.
- 사용을 설명하는 맞춤 메시지와 함께
NSUserTrackingUsageDescription
키를 추가합니다.
<key>NSUserTrackingUsageDescription</key>
<string>This identifier will be used to deliver personalized ads to you.</string>
동의 양식을 표시할 때 사용 설명이 다음과 같이 IDFA ATT 알림의 일부로 나타납니다.

그런 다음 AppTrackingTransparency
프레임워크를 연결합니다.

그러면 앱에서 ATT 알림 전에 IDFA 메시지를 표시합니다.
테스트
requestTrackingAuthorization
은 일회성 요청이므로 테스트하는 동안 ATT 알림이 한 번만 표시됩니다. UMP SDK에는 승인 상태가 ATTrackingManagerAuthorizationStatusNotDetermined
인 경우에만 로드할 수 있는 양식이 있습니다.
알림이 다시 한번 표시되도록 하려면 테스트 기기에서 앱을 제거한 후 다시 설치해야 합니다.
IDFA 유무와 관계없이 광고 요청
사용자가 ATT를 거부하면 광고 형식의 API를 사용하여 광고를 계속 요청합니다. Google 모바일 광고 SDK는 광고 요청에 IDFA를 전송하지 않습니다. 자세한 내용은 광고 형식 선택을 참고하세요.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-06-26(UTC)
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-06-26(UTC)"],[[["This guide provides steps to integrate the IDFA message within the User Messaging Platform (UMP) SDK for iOS apps, specifically focusing on Apple's App Tracking Transparency (ATT) framework."],["Before proceeding, ensure you have completed the UMP SDK setup and created an IDFA message in AdMob."],["Update your app's `Info.plist` file by adding the `NSUserTrackingUsageDescription` key with a clear explanation of how you will use the IDFA, and link the `AppTrackingTransparency` framework for the UMP SDK to manage the ATT dialog."],["During testing, note that the IDFA ATT dialog appears only once per app installation; to retest, uninstall and reinstall the app on your device."]]],["To support the IDFA message with the UMP SDK, create and publish an IDFA explainer message in the AdMob UI. Update the `Info.plist` file by adding the `NSUserTrackingUsageDescription` key with a custom message. Link the `AppTrackingTransparency` framework. Remember, the IDFA ATT dialog appears only once unless the app is reinstalled. The UMP SDK can load a form only if the authorization status is `ATTrackingManagerAuthorizationStatusNotDetermined`.\n"]]