UICollectionView 的分页

2024-02-28

我使用 UICollectionView 创建了数据表视图。

这是代码:

class PanelViewController: UIViewController{

var TableHeaderArray = NSMutableArray()
var TableDataArray = NSMutableArray()
var NumberOfRows = Int()   
var UlockDataArray = NSMutableArray()
let dataSource = DataSource()

override func viewDidLoad() {
    super.viewDidLoad()

    dataSource.populateData()

    let noOfRows = dataSource.NumberOfRows
    self.NumberOfRows = noOfRows + 1

    self.UlockDataArray = dataSource.DUDataArray
    self.TableDataArray = dataSource.DTableDataArray   


    let layout: CustomCollectionViewLayout = CustomCollectionViewLayout()

    DataTableCollectionView = UICollectionView(frame: CGRect(x:0, y:0, width:self.TableVu.bounds.width, height:self.TableVu.bounds.height), collectionViewLayout: layout)
    DataTableCollectionView.dataSource = self
    DataTableCollectionView.delegate = self
    self.DataTableCollectionView .registerNib(UINib(nibName: "FixedCellIdentifier", bundle: nil), 
        forCellWithReuseIdentifier: FixedCellIdentifier)
    self.DataTableCollectionView .registerNib(UINib(nibName: "DynamoCellIdentifier", bundle: nil),
     forCellWithReuseIdentifier: DynamoCellIdentifier)

    self.TableVu.addSubview(DataTableCollectionView)        
    self.view.addSubview(TableVu)

}

}

extension PanelViewController : UICollectionViewDataSource, UICollectionViewDelegate{
    func numberOfSectionsInCollectionView(collectionView: UICollectionView) -> Int{        
        return self.NumberOfRows
    }

func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {     
    return dataSource.TableHeaders.count        
}

func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {

    // My Code to Create Cells using data from TableHeaderArray, TableDataArray and UlockDataArray

}


func scrollViewDidScroll(scrollView: UIScrollView) {
    let offsetY = scrollView.contentOffset.y
   let contentHeight = scrollView.contentSize.height
   var returnUmidData = NSMutableArray()
   var returnTableData = NSMutableArray()

   if offsetY > contentHeight - scrollView.frame.size.height {   

        self.dataSource.populateData()

        returnUData = self.dataSource.DUDataArray
        returnTableData = self.dataSource.DTableDataArray


        let seconds = 5.0
        let delay = seconds * Double(NSEC_PER_SEC)
        let dispatchTime = dispatch_time(DISPATCH_TIME_NOW, Int64(delay))

        dispatch_after(dispatchTime, dispatch_get_main_queue(), {

             self.NumberOfRows += returnTableData.count

             let mergetWorkoutData = NSMutableArray(array: self.UlockDataArray)
             mergetWorkoutData.addObjectsFromArray(returnUmidData as [AnyObject])

             self.UlockDataArray = mergetWorkoutData

             let mergetWorkoutTabelData = NSMutableArray(array: self.TableDataArray)
             mergetWorkoutTabelData.addObjectsFromArray(returnTableData as [AnyObject])

             self.TableDataArray = mergetWorkoutTabelData 

            self.DataTableCollectionView!.reloadData()

        })
   }
}

}

最初,我显示前 50 条记录。我需要在垂直滚动上实现分页。 每次用户到达滚动末尾时,我都想进行 API 调用来获取接下来的 50 条记录。

但这样做时,我收到错误

"Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]:
 index 51 beyond bounds [0 .. 50]'"

我认为不知何故,indexPath 没有得到更新,但无法理解在哪里、为什么或如何更新它。你能给些建议么?


为什么不使用collectionView的willDisplayCell方法,这样更易​​于管理。

func collectionView(_ collectionView: UICollectionView, 
             willDisplay cell: UICollectionViewCell, 
               forItemAt indexPath: IndexPath) {
    if indexPath.row + 1 == dataSource.count && dataSource.count < myPaginationUpperLimit {
        paginateMore()
    }
}
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

UICollectionView 的分页 的相关文章

随机推荐