美文网首页
10.OC-跟踪权限设置

10.OC-跟踪权限设置

作者: ChaosHeart | 来源:发表于2023-04-17 08:10 被阅读0次

    1.info.plist

    Privacy - Tracking Usage Description
    APP需要你的同意,才能跟踪位置和数据,以此推荐周边设备位置和参数
    
    截屏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
                
            }
        }
    

    相关文章

      网友评论

          本文标题:10.OC-跟踪权限设置

          本文链接:https://www.haomeiwen.com/subject/zdoqjdtx.html