gpt4 book ai didi

objective-c - 如何异步调用 Objective-c 静态方法?

转载 作者:太空狗 更新时间:2023-10-30 03:39:11 25 4
gpt4 key购买 nike

如何异步调用静态方法?

+ (void) readDataFromServerAndStoreToDatabase
{
//do stuff here
//might take up to 10 seconds
}

最佳答案

使用 NSThread:

[NSThread detachNewThreadSelector:@selector(readDataFromServerAndStoreToDatabase)
toTarget:[MyClass class]
withObject:nil];

关于objective-c - 如何异步调用 Objective-c 静态方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3818356/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com