码迷,mamicode.com
首页 > 其他好文 > 详细

0917-发现voip会被拒

时间:2015-09-17 11:24:19      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

 

非常失望,音乐试了,viop试了,但是据说都会被拒。

 

- (void)applicationDidEnterBackground:(UIApplication *)application {

    

//    NSLog(@"进入后台");

//    [application beginBackgroundTaskWithExpirationHandler:nil];

    BOOL backgroundAccepted = [[UIApplication sharedApplication] setKeepAliveTimeout:600 handler:^{ [self backgroundHandler]; }];

    

    if (backgroundAccepted)

        

    {

        

        NSLog(@"backgrounding accepted");

        

    }

    

    

    

    [self backgroundHandler];

   

    

}

static int counter = 0;

 

- (void)backgroundHandler {

    

    

    

    NSLog(@"### -->backgroundinghandler");

    

    

    

    UIApplication *app = [UIApplication sharedApplication];

    

    

    

  __block UIBackgroundTaskIdentifier bgTask = [app beginBackgroundTaskWithExpirationHandler:^{

        

        [app endBackgroundTask:bgTask];

        

        bgTask = UIBackgroundTaskInvalid;

        

    }];

    

    

    

    // Start the long-running task

    

    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

        

        

        

        while (1) {

            

            NSLog(@"counter:%ld", counter++);

            

            sleep(1);

            

        }  

        

    });

 

0917-发现voip会被拒

标签:

原文地址:http://www.cnblogs.com/yintingting/p/4815628.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!