停顿几秒

//停顿0.3s 查看状态

dispatch_time_t timer = dispatch_time(DISPATCH_TIME_NOW, 0.3 * NSEC_PER_SEC);

dispatch_after(timer, dispatch_get_main_queue(), ^{

[self checkSellerShop];

});

猜你喜欢

转载自blog.csdn.net/qq910441958/article/details/78549132