gpt4 book ai didi

multithreading - xamarin.ios 中的 dispatch_async 等价物?

转载 作者:行者123 更新时间:2023-12-04 04:32:09 24 4
gpt4 key购买 nike

Xamarin.iOS 中的以下代码等效于什么?

    dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(void){
//Background Thread
dispatch_async(dispatch_get_main_queue(), ^(void){
//Run UI Updates
});
});

最佳答案

这几乎是您代码的 C# 等价物:

using CoreFoundation;

DispatchQueue.GetGlobalQueue(DispatchQueuePriority.Default).DispatchAsync(() =>
{
DispatchQueue.MainQueue.DispatchAsync(() => { });
});

关于multithreading - xamarin.ios 中的 dispatch_async 等价物?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48329372/

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