iOS dispatch_time

作者: a7cdfadad9f2 | 来源:发表于2016-08-23 11:12 被阅读192次
方便拷贝

//    说明:在1.5秒钟之后,执行block中的代码段。

dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

});

相关文章

网友评论

    本文标题:iOS dispatch_time

    本文链接:https://www.haomeiwen.com/subject/hjagsttx.html