码迷,mamicode.com
首页 > 移动开发 > 详细

ios 中尝试多次请求

时间:2016-05-28 08:52:09      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:

-(void)tryRun

{

    tryTimes++;

    id obj = [ASODataManager getAppleAccount];

    if (obj) {

        __block FirstViewController* sf = self;

        //有账号,可以开始获取数据

        [[ASODataManager sharedManager] fetchASOTaskListWithCompletionHandler:^(NSArray *data) {

            NSMutableArray* arr = [[NSMutableArray alloc] initWithCapacity:[data count]];

            for (id obj in data) {

                if ([[obj objectForKey:@"isFinished"] integerValue] == 0) {

                    [arr addObject:obj];

                }

            }

            

            sf->task = [arr copy];

            if ([sf->task count] <= 0) {

//                [[[UIAlertView alloc] initWithTitle:@"提示" message:@"当前无任务" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil] show];

                [[KengSDKToolsiToast makeText:@"当前无任务"] show];

            }

            [sf.MainTableView reloadData];

        }];

    }else{

        //没有账号,连续三次

        if (tryTimes <= 3) {

            [NSTimer scheduledTimerWithTimeInterval:1.0f target:self selector:@selector(tryRun) userInfo:nil repeats:NO];

        }

        

    }

 

}

ios 中尝试多次请求

标签:

原文地址:http://www.cnblogs.com/Xujg/p/5536753.html

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