ios – 是否有用于广告标识符使用的info.plist密钥

前端之家收集整理的这篇文章主要介绍了ios – 是否有用于广告标识符使用的info.plist密钥前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
它的应用程序有一个输入密封加密( ITSAppUsesNonExemptEncryption export compliance while internal testing?),但广告标识符是否有一个条目,如果有,它是什么?

解决方法

不,info.plist中没有与广告标识符相关的内容.

当您将应用程序提交到App Store时,您需要检查一些内容,以便通知Apple您正在使用标识符.有关这方面的更多细节:

https://developer.apple.com/library/ios/documentation/LanguagesUtilities/Conceptual/iTunesConnect_Guide/Chapters/SubmittingTheApp.html

以下是检索广告标识符的方法

目标C –

@import AdSupport;

NSString * adId = [[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString];

斯威夫特 –

导入AdSupport

...

let myIDFA: String?
    // Check if Advertising Tracking is Enabled
    if ASIdentifierManager.shared().isAdvertisingTrackingEnabled {
        // Set the IDFA
        myIDFA = ASIdentifierManager.shared().advertisingIdentifier.uuidString
    } else {
        myIDFA = nil
    }

(更新到Swift 3.0)

原文链接:https://www.f2er.com/iOS/333968.html

猜你在找的iOS相关文章