UIcollectionView Ячейка установлена ​​ZIndex. Я хочу создать Card Cell, используя UICollectionView - PullRequest
0 голосов
/ 14 мая 2018

Свифт Я пытаюсь создать карточку в стиле ячейки.Так что я использую представление коллекции и устанавливаю minimumLineSpacingForSectionAt в отрицательном виде, этот код работает, выглядит хорошо.

Проблема в том, что когда у меня есть скроллер снизу вверх, тогда первая ячейка - это верхняя сторона, но у меня нет необходимости сверху, я прикрепил свой код, пожалуйста, проверьте.Я приложил Изображение ошибки после прокрутки вопроса

class SecondViewController: UIViewController,UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout {

    let kItemSpace: CGFloat = -60.0

     @IBOutlet weak var collection_setting: UICollectionView!
     @IBOutlet var btn_top: UIButton!

     var ary: NSMutableArray = NSMutableArray()

      var ary_show: NSMutableArray = NSMutableArray()

    override func viewDidLoad() {
        super.viewDidLoad()
          ary = ["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]

    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }



    //-----------------------------------------------------------------------------------
    // MARK: - collection DataSource & Delegate
    //-----------------------------------------------------------------------------------



    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {

        return self.ary.count



    }

    // make a cell for each cell index path
    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {

        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "smallCollectionViewCell", for: indexPath as IndexPath) as! smallCollectionViewCell

            cell.inner_view.dropShadow()
            cell.inner_view.backgroundColor = .random()
           cell.layer.zPosition = -1
            cell.lbl_.text = "DEMO - \(indexPath.row)"
        //cell.bringSubview(toFront: collectionView)
        return cell
    }
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {

            return CGSize(width: collectionView.frame.size.width, height: 100 )



    }
    public func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath)
    {



    }



    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: NSInteger) -> CGFloat {
        return kItemSpace
    }


    func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
        print(indexPath.row)

        if(indexPath.row == 14)
        {
            print("--------------->",indexPath.row)
            cell.layer.zPosition = 0
        }else
        {
            cell.layer.zPosition = -1
        }

    }







}

enter image description here

Демо - 7, Демо - 8, Демо - 9 - этовыглядит хорошо, но другие не показывают, как я хочу.в первый раз это выглядит правильно.эта проблема возникла после прокрутки.

1 Ответ

0 голосов
/ 15 мая 2018

Попробуйте этот код, пожалуйста.

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {

let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "smallCollectionViewCell", for: indexPath as IndexPath) as! smallCollectionViewCell
    if cell == nil {
        cell.inner_view.dropShadow()
        cell.inner_view.backgroundColor = .random()
     }
       cell.layer.zPosition = -1
        cell.lbl_.text = "DEMO - \(indexPath.row)"
    return cell
}
...