真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

iOS使用廣告標示符審核不通過解決方案

最近,iOS審核,6.0以后,應用如果沒有廣告,而使用了AdSupport.framework,就會被reject

成都創(chuàng)新互聯(lián)長期為上千客戶提供的網(wǎng)站建設服務,團隊從業(yè)經(jīng)驗10年,關注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務;打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為工布江達企業(yè)提供專業(yè)的網(wǎng)站制作、網(wǎng)站建設,工布江達網(wǎng)站改版等技術服務。擁有10余年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。

應用中原來的寫法

//        NSString *adId = [[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString];
//
//        adId=[adId stringByReplacingOccurrencesOfString:@"-" withString:@""];
//
//        return adId;

樓主使用如下部分替換,并且刪除Link Binary中的AdSupport.framework的引用

NSBundle *adSupportBundle = [NSBundle bundleWithPath:@"/System/Library/Frameworks/AdSupport.framework"];
        [adSupportBundle load];
       
        if (adSupportBundle == nil) {
            return @"";
        }
        else{
           
            Class asIdentifierMClass = NSClassFromString(@"ASIdentifierManager");
           
            if(asIdentifierMClass == nil){
                return @"";
            }
            else{
                ASIdentifierManager *asIM = [[asIdentifierMClass alloc] init];
               
                if (asIM == nil) {
                    return @"";
                }
                else{
                   
                    if(asIM.advertisingTrackingEnabled){
                        return [asIM.advertisingIdentifier UUIDString];
                    }
                    else{
                        return [asIM.advertisingIdentifier UUIDString];
                    }
                }
            }
        }

多個版本均已審核通過


網(wǎng)站標題:iOS使用廣告標示符審核不通過解決方案
網(wǎng)頁網(wǎng)址:http://weahome.cn/article/ijghec.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部