从另一个视图类重新加载集合视图数据

时间:2015-04-26 14:46:38

标签: ios swift view collections

我在视图中有两个容器。顶部有一个集合视图。 我想从下面的容器中点击按钮时从按钮更新我的集合视图。我的按钮也改变了我的集合视图使用的数组的值。

我认为didSet可以完成这项工作,但遗憾的是没有用。

class TopViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegate {

    @IBOutlet weak var favoritesCV: UICollectionView!

    var myFavorites = [] {
        didSet {
            self.favoritesCV.reloadData()
        }
    }


    override func viewDidAppear(animated: Bool) {
        myFavorites = favoritesInstance.favoritesArray
    }

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

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

        let cell : FavoritesCollectionViewCell = collectionView.dequeueReusableCellWithReuseIdentifier("Cell", forIndexPath: indexPath) as! FavoritesCollectionViewCell

        var myPath = myFavorites[indexPath.row] as! String
        cell.myImage.image = UIImage(named: myPath)
        return cell
    }
 }

class BottomViewController: UIViewController, UIScrollViewDelegate  {

    @IBAction func addFavorites(sender: AnyObject) {
         favoritesInstance.favoritesArray.append("aaaa.jpg")
    }
}

存储类:

class Favorites {
    var favoritesArray:Array <AnyObject>

    init(favoritesArray:Array <AnyObject>) {
        self.favoritesArray = favoritesArray
    }
}

var favoritesInstance = Favorites(favoritesArray:[])

3 个答案:

答案 0 :(得分:8)

我添加了

NSNotificationCenter.defaultCenter().addObserver(self, selector: "loadList:", name:"load", object: nil)

在我的集合视图类的viewdidload中。 还添加了一个选择器,当通知中心调用我的数据时重新加载我的数据

func loadList(notification: NSNotification){
    self.favoritesCV.reloadData()
}

以及按下按钮的其他类:

NSNotificationCenter.defaultCenter().postNotificationName("load", object: nil)

斯威夫特3:

NotificationCenter.default.addObserver(self, selector: #selector(loadList), name:NSNotification.Name(rawValue: "load"), object: nil)

NotificationCenter.default.post(name: NSNotification.Name(rawValue: "load"), object: nil)

答案 1 :(得分:4)

Swift 4:

第一堂课:

NotificationCenter.default.post(name: NSNotification.Name("load"), object: nil)

带有collectionView的类:

在viewDidLoad()中:

NotificationCenter.default.addObserver(self, selector: #selector(loadList(notification:)), name: NSNotification.Name(rawValue: "load"), object: nil)

和功能:

@objc func loadList(notification: NSNotification) {
  self.collectionView.reloadData()
}

答案 2 :(得分:0)

大!我在寻找这个。在Swift 3中,代码略有不同。在collectionviewcontroller中:

NotificationCenter.default.addObserver(self, selector: #selector(RoundCollectionViewController.load), name:NSNotification.Name(rawValue: "reload"), object: nil)

在另一个:

NotificationCenter.default.post(name: NSNotification.Name(rawValue: "load"), object: nil)