在没有阻止UI的情况下在For循环中添加延迟

时间:2015-10-14 14:49:19

标签: ios objective-c delay delayed-execution

在我的界面中,当点击一个按钮时,它会调用一个for循环,按顺序执行多个任务。

// For Loop
for (int i = 1; i <= 3; i++)
{
    // Perform Task[i]
}
// Results:
// Task 1
// Task 2
// Task 3

在完成每项任务后,我想添加一个用户定义的延迟。例如:

// For Loop
for (int i = 1; i <= 3; i++)
{
    // Perform Task[i]
    // Add Delay Here
}

// Results:
//
// Task 1
// Delay 2.5 seconds
//
// Task 2
// Delay 3 seconds
//
// Task 3
// Delay 2 seconds

在iOS中,使用Objective-C,有没有办法在for循环中添加这样的延迟,请记住:

  1. 用户界面应保持响应。
  2. 必须按顺序执行任务。
  3. for循环上下文中的代码示例将是最有帮助的。谢谢。

4 个答案:

答案 0 :(得分:5)

使用GCD dispatch_after。 您可以在stackoverflow上搜索其用法。 好文章是here

Swift中的简短示例,延迟时间为1.5秒:

dispatch_after(dispatch_time(DISPATCH_TIME_NOW, Int64(Double(NSEC_PER_SEC) * 1.5)), dispatch_get_main_queue()) {
     // your code here after 1.5 delay - pay attention it will be executed on the main thread
}

和objective-c:

dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^ {
    // your code here after 1.5 delay - pay attention it will be executed on the main thread
});

答案 1 :(得分:1)

对于NSOperationQueue而言,这听起来像是一个理想的工作,延迟实现如下:

@interface DelayOperation : NSOperation
@property (NSTimeInterval) delay;
- (void)main
{
    [NSThread sleepForTimeInterval:delay];
}
@end

答案 2 :(得分:1)

此解决方案有效吗?而不是使用dispatch_after,我使用dispatch_async和[NSThread sleepForTimeInterval]块,这允许我在我的自定义队列中的任何地方放置延迟。

dispatch_queue_t myCustomQueue;
myCustomQueue = dispatch_queue_create("com.example.MyQueue", NULL);

dispatch_async(myCustomQueue, ^ {
    NSLog(@“Task1”);
});

dispatch_async(myCustomQueue, ^ {
    [NSThread sleepForTimeInterval:2.5];
});

dispatch_async(myCustomQueue, ^ {
    NSLog(@“Task2”);
});

dispatch_async(myCustomQueue, ^ {
    [NSThread sleepForTimeInterval:3.0];
});

dispatch_async(myCustomQueue, ^ {
    NSLog(@“Task3”);
});

dispatch_async(myCustomQueue, ^ {
    [NSThread sleepForTimeInterval:2.0];
});

答案 3 :(得分:1)

Heres一个Swift版本:

func delay(seconds seconds: Double, after: ()->()) {
    delay(seconds: seconds, queue: dispatch_get_main_queue(), after: after)
}

func delay(seconds seconds: Double, queue: dispatch_queue_t, after: ()->()) {
    let time = dispatch_time(DISPATCH_TIME_NOW, Int64(seconds * Double(NSEC_PER_SEC)))
    dispatch_after(time, queue, after)
}

你怎么称呼它:

print("Something")    
delay(seconds: 2, after: { () -> () in
  print("Delayed print")    
})
print("Anotherthing")