作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个自定义的 UICollectionViewFlowLayout,它覆盖了 targetContentOffset(forProposedContentOffset:),以便在用户缩放时提供正确的 contentOffset,因为我遇到了这个问题(错误的 contentOffset)
Dynamically setting layout on UICollectionView causes inexplicable contentOffset change
class TimelineCollectionViewFlowLayout: UICollectionViewFlowLayout {
// MARK: - Init
override init() {
super.init()
self.minimumLineSpacing = 0
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
override func prepare() {
if let collectionView = self.collectionView {
collectionView.isPagingEnabled = false
self.sectionInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
self.scrollDirection = .horizontal
}
}
override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
print("hello")
return proposedContentOffset
}
}
但不幸的是 targetContentOffset 没有被调用,你知道为什么吗?
谢谢!
蒂埃里
最佳答案
试试
override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint, withScrollingVelocity velocity: CGPoint) -> CGPoint
关于swift - targetContentOffset(forProposedContentOffset :) in my CustomFlowLayout not called,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40490567/
我正在编写一个自定义的 UICollectionViewFlowLayout,它覆盖了 targetContentOffset(forProposedContentOffset:),以便在用户缩放时提
我在我的 iOS 应用程序中实现了 customFlowLayout。我已经将 targetContentOffsetForProposedContentOffset:withScrollingVel
我是一名优秀的程序员,十分优秀!