方法一
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
//写要发生的代码;2秒以后发生
});
方法二
[self performSelector:<#(发生的方法)#> withObject:<#(id)#> afterDelay:<#(几秒以后发生)#>]
时间: 2024-10-06 07:32:18