如何用中心点制作垂直集合视图

时间:2019-02-01 07:47:51

标签: swift xcode uicollectionview

我要制作垂直收集视图,每行带有一个标签,并且必须是中心线才能滚动并选择这样的中心点,请指导我谢谢 https://imgur.com/a/gVGzFe5

extension ViewController : UICollectionViewDelegate,UICollectionViewDataSource
{
    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return tempArray.count
    }

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "myCell", for: indexPath) as! MyCollectionViewCell
        cell.lblNumber.text = "\(indexPath.row)"
        return cell

0 个答案:

没有答案