如何检查单元格是不是已显示 Swift

Posted

技术标签:

【中文标题】如何检查单元格是不是已显示 Swift【英文标题】:How to check if a cell has been displayed Swift如何检查单元格是否已显示 Swift 【发布时间】:2016-07-21 09:55:44 【问题描述】:

当我显示我的表格视图时,我让我的单元格带有这样的动画。

 func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) 

             cell.alpha = 0
             let rotation = CATransform3DTranslate(CATransform3DIdentity, -250, 20, 0)
             cell.layer.transform = rotation
             UIView.animateWithDuration(0.9)
             cell.alpha = 1
             cell.layer.transform = CATransform3DIdentity

    

它是这样工作的,但是当我向下然后再次向上查看之前的单元格时,动画仍然存在。

显示我相信我必须检查单元格是否已显示。

我尝试使用 didEndDisplayingCell 函数并将 cell.tag 放入数组中,然后我使用 array.contains(cell.tag) 检查当前单元格是否在该数组中,但它不起作用。 实际上动画只对前三个单元有效,然后什么都没有。

【问题讨论】:

使用 visibleCells 获取可见单元格。 看到一次***.com/questions/3326658/… @Anbu.Karthik 感谢您的回答,但我想知道已看到哪些单元格,因此动画不会再次用于已看到的单元格 将单元格 indexPath 添加到您的数组而不是标签中,这些单元格正在被重复使用,因此重复使用的单元格的标签将相同。 【参考方案1】:

您应该保留一个 indexPaths 数组,并在显示单元格时添加到其中。这样你就可以检查单元格是否已经动画了。

if (!indexPaths.contains(indexPath)) 
    indexPaths.append(indexPath)
    cell.alpha = 0
    let rotation = CATransform3DTranslate(CATransform3DIdentity, -250, 20, 0)
    cell.layer.transform = rotation
    UIView.animateWithDuration(0.9)
        cell.alpha = 1
        cell.layer.transform = CATransform3DIdentity
    

【讨论】:

谢谢您.. 成功了!我会在 3 分钟内接受你的回答【参考方案2】:

正如 @James-P 在 cmets 中提到的 - 只需创建一个数组

var indexPathArray = [NSIndexPath]()

并重写你的 willDisplayCell 方法:

func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) 

    if !indexPathArray.contains(indexPath) 

        indexPathArray.append(indexPath)

        cell.alpha = 0
        let rotation = CATransform3DTranslate(CATransform3DIdentity, -250, 20, 0)
        cell.layer.transform = rotation
        UIView.animateWithDuration(0.9)
            cell.alpha = 1
            cell.layer.transform = CATransform3DIdentity
        
    

【讨论】:

【参考方案3】:

您可以做的是将单元格的索引路径放入数组中并检查索引路径是否在数组中。如果索引路径在数组中则不执行动画

【讨论】:

以上是关于如何检查单元格是不是已显示 Swift的主要内容,如果未能解决你的问题,请参考以下文章

Swift 3 - 已展开第一个单元格的可展开表格视图单元格

如何在 TAP 上编辑 tableview 单元格而不是滑动 - Swift

SWIFT:如何修复单元格荧光笔并使整个集合视图滚动而不是荧光笔?

Swift:Tableview 中特定单元格中的 addSublayer 不是每个单元格

多细胞类型swift 4.2

如何在 Swift 中使用 UITableView 仅使用单元格(不是部分/标题)进行扩展?