Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从服务器同步下载数据时,如何在 iOS 应用程序中显示进度条?
你不能。当您同步获取数据时,获取发生在主线程中,并在获取时阻塞它,并且 UI 使用主线程更新自身,因此在获取完成之前,您无法更新 UI 上的任何内容。您应该异步获取(在另一个线程中)并在某些检查点上更新 UI(在主线程上运行)。