问题:我提交了转A,然后拉了,拉动转速(B)显示在A之上,即使B早于我的转A,如下所示:
override func layoutAttributesForElements(in rect: CGRect) -> [UICollectionViewLayoutAttributes]? {
var attributes = [UICollectionViewLayoutAttributes]()
if let itemAttributes = self.itemAttributes {
for section in itemAttributes {
let filteredArray = section.filter{ evaluatedObject in
return rect.intersects(evaluatedObject.frame)
}
attributes.append(contentsOf: filteredArray)
}
}
return attributes
}
刷新repo或重启tortoisehg确实改变了顺序。我必须克隆一个新副本,然后使用新副本的.hg文件夹覆盖我当前的.hg文件夹。
有没有方便的方法呢?(我使用的是最新版本:3.9)