dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(<#delayInSeconds#> * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
<#code to be executed after a specified delay#>
});
<#delayInSeconds#> 延迟时间
<#code to be executed after a specified delay#> 延迟内容
时间: 2024-12-06 08:30:00