编辑:将图片更改为标签并转换字符串“>”后90度它仍然无法正常工作。我打印出度数的值,它按预期工作,但转换没有发生。
我的iOS应用程序中有一种完全奇怪的行为。我有一个带有节标题的表格视图。在这些部分标题中是典型的下拉图像。一个向下箭头和一个向上箭头图像。当我点击标题部分时,单元格会动态显示或隐藏。现在我想根据它改变图像。
这是我点击章节标题时运行的代码:
func selectedSection(sender: UIButton) {
let previousSelected = self.selectedSection
self.selectedSection = sender.tag
if previousSelected != self.selectedSection {
// one section opens another gets closed
// workaround so the animation does not look awful for section headers
print("Previous: \(previousSelected)")
sectionHeaders[previousSelected].toggleIcon()
print("Selected: \(self.selectedSection)")
sectionHeaders[self.selectedSection].toggleIcon()
print("***********")
var indexPathToInsert = [IndexPath]()
var indexPathToDelete = [IndexPath]()
for i in 0..<self.menuItems[self.selectedSection].getSubItems().count {
indexPathToInsert.append(IndexPath(row: i, section: self.selectedSection))
}
for i in 0..<self.menuItems[previousSelected].getSubItems().count {
indexPathToDelete.append(IndexPath(row: i, section: previousSelected))
}
tableView.beginUpdates()
tableView.deleteRows(at: indexPathToDelete, with: .none)
tableView.insertRows(at: indexPathToInsert, with: .automatic)
tableView.endUpdates()
} else {
// close the section so the selected section is 0 again
self.selectedSection = 0
print("Previous: \(previousSelected)")
sectionHeaders[previousSelected].toggleIcon()
print("***********")
tableView.reloadSections([previousSelected], with: .none)
}
}
切换图标如下所示:
func toggleIcon() {
isOpen = !isOpen
print("\(isOpen)")
if isOpen {
print("Works")
self.sectionIcon.image = UIImage(named: "arrow-up")
} else {
print("Does not work")
self.sectionIcon.image = UIImage(named: "arrow-down")
}
}
当我运行它并点击不同的标题时,一切都按预期工作。但是一旦我关闭一个部分而没有打开另一部分,这部分就会被打破。代码仍然有效,但不会更改图像。打印出来:
'Selected: 1'
true
Works
当我使用断点时,会调用代码,将图标设置为向上箭头。但是,它不会改变图像。
我真的不明白发生了什么。是否不允许多次更改图像?
感谢您的帮助!
答案 0 :(得分:0)
我不确定这是否是造成问题的原因,但请记住,所有UI更改都在主线程上。
在Swift 3上,
尝试将您的调用包装为使用类似
的更新图像DispatchQueue.main.async { }
祝你好运:)
答案 1 :(得分:0)
好的,我能用自己的实现来解决它。
我将selectedSection(sender:UIButton)中的else语句更改为:
// close the section so the selected section is 0 again
self.selectedSection = 0
print("Previous: \(previousSelected)")
sectionHeaders[previousSelected].toggleIcon()
print("***********")
var indexPathToDelete = [IndexPath]()
for i in 0..<self.menuItems[previousSelected].getSubItems().count {
indexPathToDelete.append(IndexPath(row: i, section: previousSelected))
}
tableView.beginUpdates()
tableView.deleteRows(at: indexPathToDelete, with: .left)
tableView.endUpdates()
因此,整个部分的动画效果不起作用。感谢@Mitesh jadav他的选择,但这并没有关闭其他开放的部分,所以我坚持我的解决方案。