1.info.plist
Privacy - Tracking Usage Description
APP需要你的同意,才能跟踪位置和数据,以此推荐周边设备位置和参数
![](https://img.haomeiwen.com/i2014884/9aab80e41bebf2a6.png)
截屏2023-04-17 14.40.21.png
2.AppDelegate
///APP已经变的活跃的时候
override func applicationDidBecomeActive(_ application: UIApplication) {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
if #available(iOS 14, *) {
DispatchQueue.main.asyncAfter(deadline: DispatchTime.now()+2) {
ATTrackingManager.requestTrackingAuthorization(completionHandler: { status in
// Tracking authorization completed. Start loading ads here.
})
}
} else {
// Fallback on earlier versions
}
}
网友评论