gpt4 book ai didi

ios - Swift 3 Xcode 8 Collection View 使用分段控件重新加载数据

转载 作者:行者123 更新时间:2023-11-29 11:44:41 25 4
gpt4 key购买 nike

我根据分段控件选择的索引显示来自 2 个不同数组的 2 组数据。一切正常,所有正确的数据都加载了。然而,一件非常奇怪的事情发生了:

当我按下另一个分段控件“按钮”时, Collection View 应该会非常平滑地切换(在分段控件 IBAction 中实现了 reloadData())。但是在加载“正确数据”之前它会快速闪烁。我试过重新启动 Xcode,甚至把它交给 friend 进行测试,但是,快速“闪光”仍然存在。当我从分段控件“按钮 2”返回到分段控件“按钮 1”时,也会发生这种情况。

当我仔细观察闪烁的内容时,我发现 Collection View 以随机顺序(或看起来如此)显示我数组中的数据,然后很快(非常快!)切换回其“正确”顺序.

这是我的 View Controller :

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.

}

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

var array1 = ["Red", "Yellow", "Purple"]
var array2 = ["Apple", "Banana", "Grape"]

@IBAction func segmentedControl(_ sender: UISegmentedControl) {
collectionView.reloadData()
// Reload Data
collectionView.reloadItems(at: collectionView.indexPathsForVisibleItems)
// Prevents 'flash' from .reloadData()
}

@IBOutlet weak var segmentedOutlet: UISegmentedControl!
// Creates an outlet for segmented control (that can be set)

@IBOutlet weak var collectionView: UICollectionView!

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
switch segmentedOutlet.selectedSegmentIndex {
case 0 : return array1.count
case 1 : return array2.count
default: return 0
}
}

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath) as! collectionViewCell

switch segmentedOutlet.selectedSegmentIndex {
case 0 : cell.button.setTitle(array1[indexPath.row], for: .normal)
case 1 : cell.button.setTitle(array2[indexPath.row], for: .normal)
default : break
}
return cell
}

最佳答案

好的,所以我找到了解决这个问题的方法。基本上之后:

collectionView.reloadData()

添加

collectionView.reloadItems(位于:collectionView.indexPathsForVisibleItems)

避免在使用 Collection View 切换分段控件时可能遇到的令人讨厌且相当烦人的“闪烁”。

关于ios - Swift 3 Xcode 8 Collection View 使用分段控件重新加载数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44580287/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com