-2

我不知道如何停止 IBAction。我需要什么:我按下按钮,然后调用运行大约 5 分钟的 IBAction。我想让取消按钮在按下时从第一个按钮停止 IBAction。

我该怎么做呢?

代码:

- (IBAction)download:(id)sender {


    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^ {

        // Determile cache file path
        NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);


        for (i=0;i<=7;i++) {

            //Updating progressView and progressLabel

            dispatch_async(dispatch_get_main_queue(), ^ {
                progressSlider.progress = (float)i/(float)299;
                progressLabel.text = [NSString stringWithFormat:@"Загружено: %d из 299",i];
            });

            NSString *filePath = [NSString stringWithFormat:@"%@/avto-0-%d.html", [paths objectAtIndex:0],i];

            // Download and write to file
            NSString *mustUrl = [NSString stringWithFormat:@"http://www.mosgortrans.org/pass3/shedule.php?type=avto&%@", [listOfAvtoUrl objectAtIndex:i]];
            NSURL *url = [NSURL URLWithString:mustUrl];
            NSData *urlData = [NSData dataWithContentsOfURL:url];


            [urlData writeToFile:filePath atomically:YES];

        }

    });


}
4

2 回答 2

1

单击时调用另一个在单独线程中运行代码的函数IBAction。现在,您可以根据需要停止/取消线程。

于 2012-11-22T14:00:14.997 回答
0

创建一个名为 isCancelled 的 BOOL 变量。当您单击另一个按钮时,将 isCancelled 设置为 YES。在你的下载函数中设置这个 for 循环:

if (isCancelled)return;
于 2012-11-22T14:06:51.090 回答