gpt4 book ai didi

swift - 不确定的进度指示器没有动画

转载 作者:行者123 更新时间:2023-11-30 10:43:31 24 4
gpt4 key购买 nike

即使我使用队列或 sleep ,进度指示器也不会开始动画。

我有一个函数可以读取目录的内容,并为每个 mp3 文件获取文件标签。另外,我阅读了有关进度指示器的帖子,但到目前为止没有任何帮助。

{
progressIndicator.startAnimation(self)
sleep(2)
if let item = self.outlineView.item(atRow: self.outlineView.selectedRow) {
self.arrMp3File.removeAll()
do {
let xx = (item as! DirectoryItem).url
let b = self.getSubDir(path: xx.path)
print(xx.path)
for bb in b {
self.getTagsFromFile(file: xx.path+"/"+bb)
}
}
self.arrMp3File.sort(by: {
$0.file < $1.file
})
self.loadTagsFromButton.isEnabled = true
self.tableView.reloadData()
}
self.progressIndicator.stopAnimation(self)
}

我想显示动画,以便用户知道应用程序没有卡住。如果我删除 stopAnimation,它会在文件显示在桌面 View 上后开始动画。

我添加 sleep 只是为了检查动画。

最佳答案

我解决了。

{
if let item = self.outlineView.item(atRow: self.outlineView.selectedRow) {
self.arrMp3File.removeAll()
do {
let xx = (item as! DirectoryItem).url
let b = self.getSubDir(path: xx.path)
DispatchQueue.global(qos: .background).async { [weak self] in
DispatchQueue.main.async {
self?.progressIndicator.isHidden = false
self?.progressIndicator.startAnimation(self)
}
for bb in b {
self?.getTagsFromFile(file: xx.path+"/"+bb)
}
DispatchQueue.main.async {
self?.arrMp3File.sort(by: {
$0.file < $1.file
})
self?.tableView.reloadData()
self?.loadTagsFromButton.isEnabled = true
self?.progressIndicator.stopAnimation(self)
self?.progressIndicator.isHidden = true
}
}
}
}

}

关于swift - 不确定的进度指示器没有动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56304148/

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