Swift 3中的CSStickyHeaderFlowLayout

时间:2016-10-05 08:41:52

标签: ios swift

error33 = int(2) while error33 > 1: while True: try: survivalrateforjuveniles = float(input("Please enter the survival rate for poomen"))##Float input is being used as break except ValueError: print("Please enter a number between 0 and 1") continue else: break 中使用了CSStickyHeaderFlowLayout班级(https://github.com/CSStickyHeaderFlowLayout/CSStickyHeaderFlowLayout)。它使用UICollectionViewiOS7中工作。更新到Swift2.3后,失败了。 错误消息正在跟随。

  

未捕获的异常:索引路径(< NSIndexPath:0xc000000000000016> {length = 2,path = 0 - 0})的补充项的布局属性从< CSStickyHeaderFlowLayout:0x7f825bea4550> indexPath:{0,0} zIndex:1024 valid:YES kind:UICollectionElementKindSectionHeader to< CSStickyHeaderFlowLayout:0x7f825becd510> indexPath:{0,0}

我的代码正在关注。

Swift3

我不知道如何解决这个问题。有人提出一些建议吗? 感谢。

1 个答案:

答案 0 :(得分:0)

我找到了答案here

代码是

override func viewDidLoad() {
    super.viewDidLoad()
    if #available(iOS 10.0, *) {
        self.collectionView?.isPrefetchingEnabled = false
    } else {
        //Fallback on earlier versions
    }
}