我无法更新CollectionView
的标题视图的数据。这个标题视图是UICollectionReusableView
的子类。
我试图调用一个方法来在不同的位置重新加载这些数据,但是它们都没有触发更新。要查看更新的数据,我必须关闭并再次打开应用程序。
集合视图:
func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
guard kind == UICollectionView.elementKindSectionHeader else {
fatalError("Unexpected element kind.")
}
let headerView = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "ProfileHeaderView", for: indexPath) as! ProfileHeaderView
header?.reloadData()
// headerView.userNameLabel.text = defaults.string(forKey: "username")
return headerView
}
标题视图:
class ProfileHeaderView: UICollectionReusableView {
@IBOutlet weak var userNameLabel: UILabel!
func reloadData() {
let defaults = UserDefaults.standard
usernameTextLabel.text = defaults.string(forKey: "username")
}
我还尝试在ViewWillAppear
和ViewDidAppear
上调用reloadData()
发布于 2019-09-14 11:23:26
您可以尝试获取报头,例如:
func reloadHeaderData() {
guard let header = collectionView.supplementaryView(forElementKind: UICollectionView.elementKindSectionHeader, at: YourIndexPath) as? ProfileHeaderView else { return }
header.reloadData()
}
https://stackoverflow.com/questions/57933594
复制