如何解决Swift UIKit扩展单元无法正常工作
我正在尝试在tableView内实现可扩展单元格。我正在使用
expandedindexSet : IndexSet = []
跟踪扩展的行。当表加载时,我确认ExpandedindexSet包含indexPath的当前行:
if self.viewmodel.expandedindexSet.contains(row) {
cell.configureCell(rule: item,isExpanded: true)
} else {
cell.configureCell(rule: item,isExpanded: false)
在选择中,我也使用这种方法来扩展或压缩单元格:
if viewmodel.expandedindexSet.contains(indexPath.row) {
viewmodel.expandedindexSet.remove(indexPath.row)
} else {
// if the cell is not expanded,add it to the indexset to expand it
viewmodel.expandedindexSet.insert(indexPath.row)
}
// the animation magic happens here
// this will call cellForRow for the indexPath you supplied,and animate the changes
tableView.reloadRows(at: [indexPath],with: .automatic)
但是它仅对一个单元格有效,如果我尝试在扩展一个单元格的同时扩展第二个单元格,则它不起作用。如何使用相同的方法获取多个展开的单元格,我无法使用映射为isExpanded的属性映射到附加到dataSource的对象数组,因为我正在使用rxSwift。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。