我现在正面临一个奇怪的错误。我有一个UIView的扩展,它将指示器向左和向右旋转90度。我使用UITableViewController作为导航抽屉。我还添加了一个可扩展列表,并为主要区域(有子项目)使用UITableViewHeaderFooterView。
UITableViewHeaderFooterView就像主要的'单元格一样。在它们下面是UITableView的真实单元格,当用户点击UITableViewHeaderFooterView时,它们被删除并插入。
根据WebView(主视图)的URL,我想更新tableView的内容。一旦数据发生变化,扩展的动画就不再有效。代码仍然执行,值正确。我再也看不到动画了。
UITableViewHeaderFooterView:
import UIKit
class TableSectionHeader: UITableViewHeaderFooterView {
@IBOutlet weak var titleLabel: UILabel!
@IBOutlet weak var containerView: UIView!
@IBOutlet weak var indicatorImage: UIImageView!
override func draw(_ rect: CGRect) {
super.draw(rect)
indicatorImage.image = IconFont.image(fromIcon: .next, size: Constants.Sizes.MENU_INDICATOR_SIZE, color: Constants.Colors.WHITE_COLOR)
}
func setExpanded(expanded: Bool) {
indicatorImage.rotate(expanded ? .pi / 2 : 0.0)
}
}
WebViewController中的方法:
private func loadNewMenu(href: String) {
NetworkService.sharedInstance.getNavigation(path: href, completion: { menu in
if let menuController = self.menuVC {
menuController.menuItems = menu
menuController.tableView.reloadData()
}
})
}
UIView扩展程序:
import UIKit
extension UIView {
func rotate(_ toValue: CGFloat, duration: CFTimeInterval = 0.2) {
let animation = CABasicAnimation(keyPath: "transform.rotation")
animation.toValue = toValue
animation.duration = duration
animation.isRemovedOnCompletion = false
animation.fillMode = kCAFillModeForwards
self.layer.add(animation, forKey: "rotationIndicator")
}
}
MenuTableViewController的相关方法:
// MARK: Custom Menu Methods
@objc func handleExpandClose(sender: UITapGestureRecognizer) {
guard let section = sender.view?.tag else {
return
}
var indexPaths = [IndexPath]()
for row in subItems.indices {
let indexPath = IndexPath(row: row, section: section)
indexPaths.append(indexPath)
}
let isExpanded = menuItems[section].isExpanded
menuItems[section].isExpanded = !isExpanded
sectionHeaders[section].setExpanded(expanded: !isExpanded)
if isExpanded {
tableView.deleteRows(at: indexPaths, with: .fade)
} else {
tableView.beginUpdates()
closeOpenedSections(section: section)
tableView.insertRows(at: indexPaths, with: .fade)
tableView.endUpdates()
}
}
private func closeOpenedSections(section: Int) {
var closeIndexPaths = [IndexPath]()
for (sectionIndex, sec) in menuItems.enumerated() {
guard let subItems = sec.subItems, sec.isExpanded, sectionIndex != section else {
continue
}
sec.isExpanded = false
for rowIndex in subItems.indices {
let closeIndexPath = IndexPath(row: rowIndex, section: sectionIndex)
closeIndexPaths.append(closeIndexPath)
}
sectionHeaders[sectionIndex].setExpanded(expanded: false)
tableView.deleteRows(at: closeIndexPaths, with: .fade)
}
}
这是我的MenuTableViewController中viewForHeaderInSection的实现:
override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
if let sectionHeader = self.tableView.dequeueReusableHeaderFooterView(withIdentifier: "TableSectionHeader") as? TableSectionHeader {
sectionHeader.setUpHeader(emphasize: menuItems[section].emphasize)
sectionHeader.titleLabel.text = menuItems[section].title
let tap = UITapGestureRecognizer(target: self, action: #selector(MenuTableViewController.handleExpandClose(sender:)))
sectionHeader.addGestureRecognizer(tap)
sectionHeader.indicatorImage.isHidden = menuItems[section].subItems != nil ? false : true
sectionHeader.tag = section
self.sectionHeaders.append(sectionHeader)
return sectionHeader
}
return UIView()
}
我知道它有很多代码,但我想它与tableView的reloadData()有某种关系。在执行重新加载之前,动画完全正常。如果我在重新加载之前没有打开菜单,我也没有看到错误。它只是在第一次重新加载数据后发生(即使数据完全相同)。
同样,动画代码仍然被执行,扩展值是正确的(真/假)。我已经将动画发生的UIImageView打印到控制台,即使在重新加载后它看起来也是相同的视图。但动画并没有出现。
答案 0 :(得分:0)
事实证明这是我自己的错误!我使用了两个数组(sectionHeaders,menuItems)。当我收到新数据时,我只更改了其中一个。因此,细胞和我正在研究的内容之间存在不匹配。