简体   繁体   中英

update collectionview in swift, reload the data

I currently have two collectionview, each linked with an array of Strings and are embedded with buttons. I want to make it so that I can select a value on the collectionview at the bottom, then be able to drop that value to a position on the collectionview on the top, by,again, tapping it. I am not sure how I can update the collectionview, every time I tap a button.

import UIKit
class MyButtonCell: UICollectionViewCell{
    @IBOutlet weak var buttonOne: UIButton!
    @IBOutlet weak var targetButton: UIButton!
    
    var callback: (() -> ())?
    
    override init(frame: CGRect) {
        super.init(frame: frame)
        commonInit()
        
    }
    required init?(coder: NSCoder) {
        super.init(coder: coder)
        commonInit()
    }
    func commonInit() -> Void {
        contentView.layer.borderWidth = 1
        contentView.layer.borderColor = UIColor.black.cgColor
    }
    
    @IBAction func buttonTapped(_ sender: UIButton) {
        
        callback?()
    }
}

class StevenViewController: UIViewController, UICollectionViewDelegate, UICollectionViewDataSource {

    let buttonTitles: [String] = [
        "4", "6", "7", "8"
    ]
    
    var targetButtonTitles: [String] = [
        "", "", "", ""
    ]
    
    var current:String = ""
    
    @IBOutlet var collectionView: UICollectionView!
    
    @IBOutlet var targetCollection: UICollectionView!
    
    override func viewDidLoad() {
        super.viewDidLoad()
        targetCollection.delegate = self
        targetCollection.dataSource = self
        
        collectionView.delegate = self
        collectionView.dataSource = self
        
        
    }
    func numberOfSections(in collectionView: UICollectionView) -> Int {
        return 1
    }
    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return buttonTitles.count
        
    }
    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "myCellID", for: indexPath) as! MyButtonCell
        let targetCell = targetCollection.dequeueReusableCell(withReuseIdentifier: "myCellID", for: indexPath) as! MyButtonCell

           // set the button title (and any other properties)
        
         
           if collectionView == self.collectionView {
              
               // Setup here your cell
               cell.callback = {
                   print("Button was tapped at \(indexPath)")
                   self.targetButtonTitles[indexPath.item] = self.buttonTitles[indexPath.item]
                   
                   //print(self.targetButtonTitles)
                self.current = self.buttonTitles[indexPath.item]
                print(self.current)
                   
                   // do what you want when the button is tapped
               }

               cell.buttonOne.setTitle(buttonTitles[indexPath.item], for: [])

               return cell
           } else {

               // Setup here your targetCell
            
            cell.callback = {
                if self.current != ""{
                    self.targetButtonTitles[indexPath.item] = self.current
                    targetCell.targetButton.setTitle(self.targetButtonTitles[indexPath.item], for: [])
                    

                }
            }
            
            targetCell.targetButton.setTitle(self.targetButtonTitles[indexPath.item], for: [])

               return targetCell
           }
        
    }
}

在此处输入图像描述

I am not sure how I can put that "return targetcell" into the cell.callback or the iBaction

I suggest that you do your logic by the tag of the collection views.

override func viewDidLoad() {
    super.viewDidLoad() 
    collectionView.tag = 1
    targetCollection.tag = 2
}

in your delegates you create and return your cells by checking which collection view is asking for the data, for example

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    if collectionView.tag == 1 {
        return buttonTitles.count
     } else if collectionView.tag == 2 {
        return targetButtonTitles.count
    }    
}

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    if collectionView.tag == 1 {
       let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "myCellID", for: indexPath) as! MyButtonCell
       cell.buttonOne.setTitle(buttonTitles[indexPath.item], for: [])
    .
    .
    .
    return cell
    } else if collectionView.tag == 2 {
       let targetCell = targetCollection.dequeueReusableCell(withReuseIdentifier: "myCellID", for: indexPath) as! MyButtonCell
       cell.buttonOne.setTitle(targetButtonTitles[indexPath.item], for: [])

    .
    .
    .
    return cell
    }  
}

in your callbacks, move the data around in your two arrays and when you done, reload both collection views.

self.targetButtonTitles[indexPath.item] = self.buttonTitles[indexPath.item]

collectionView.reloadData()
targetCollection.reloadData()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM