ios - How to use AFN to pop up the loading box after 3 seconds of network request
大家讲道理
大家讲道理 2017-06-24 09:44:24
0
1
910

The product has a requirement that the loading animation pops up after network request 3, but I don’t want to use NSTimer. Is there any easy way

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(1)
迷茫

Objective-C:

dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
    // show loading
});

Swift 3: (Note: self cannot be omitted in block)

DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 3) { 
    // show loading
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!