活动指示器计时
如果我有这样的代码:
....
// 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅当您在除 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.