活动指示器计时

发布于 2024-11-07 02:20:37 字数 210 浏览 3 评论 0原文

如果我有这样的代码:

....
// start activity indicator
[class callMethod];
// stop activity indicator
...

如果 [class callMethod] 需要 10 秒(作为示例),指示器将在此时动画,对吧?调用方法后代码会被阻塞?

If I've got code like this:

....
// start activity indicator
[class callMethod];
// stop activity indicator
...

If [class callMethod] takes 10 seconds (as an example), the indicator will be animated in this time right? After calling the method the code will be blocked?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我不吻晚风 2024-11-14 02:20:37

仅当您在除 main 之外的任何线程上调用 [class callMethod] 时(因为这会阻止 UI,进而阻止指示器旋转。

Only if you call the [class callMethod] on any thread other than main (because this will block UI, which will in turn block the indicator from spinning.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文