首页 > 代码库 > 异步多线程

异步多线程

UI只能在主线程中完成更新,在子线程中更新UI报错如下

Only the original thread that created a view hierarchy can touch its views.

但是,在主线程中完成耗时操作容易引起使用体验不佳,进程卡顿问题,为了解决此问题引入异步多线程

 

异步多线程

异步多线程