该类型的 CollectionView 不支持从调度程序线程以外的线程对其 SourceCollection 进行的更改。

Posted 静谧的小码农

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了该类型的 CollectionView 不支持从调度程序线程以外的线程对其 SourceCollection 进行的更改。相关的知识,希望对你有一定的参考价值。

ObservableCollection类型---该类型的 CollectionView 不支持从调度程序线程以外的线程对其 SourceCollection 进行的更改。

解决方案

ThreadPool.QueueUserWorkItem(delegate
            
                SynchronizationContext.SetSynchronizationContext(new
                    DispatcherSynchronizationContext(System.Windows.Application.Current.Dispatcher));
                SynchronizationContext.Current.Post(pl =>
                
                    //里面写真正的业务内容
                    //书写需要进行运行的代码
                , null);
            );

其中 _FrameContents 就是public ObservableCollection<FrameContent> _FrameContents 类型

显示collectionView的标头大小,基于该标头内部的集合视图动态内容不起作用

我有一个collectionView(1),我正在设置一个标题。此标头包含另一个collectionView(2)。现在我尝试根据标题中collectionView(2)的大小在referenceSizeForHeaderInSection中设置headerSize。我基本上卡住了,不知道从哪里开始,我尝试了一切。我能够得到标题高度:

collectionView.collectionViewLayout.collectionViewContentSize.height

但只能在collectionView(2)中设置一个公共变量。试图获取公共var它将无法在collectionView(1)referenceSizeForHeaderInSection中工作(仅当我使用DispatchQueue时,它无法获得标头的返回值)。可能我做错了什么。需要帮助,另一个方向,任何它的赞赏。

func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {

    let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "VideoHeader", for: indexPath)
    header.removeFromSuperview()
    header.backgroundColor = UIColor.white

    headerAdvertCollection.collectionView.translatesAutoresizingMaskIntoConstraints = false
    header.addSubview(headerAdvertCollection.collectionView)
    headerAdvertCollection.collectionView.centerXAnchor.constraint(equalTo: header.centerXAnchor).isActive = true
    headerAdvertCollection.collectionView.centerYAnchor.constraint(equalTo: header.centerYAnchor).isActive = true
    headerAdvertCollection.collectionView.heightAnchor.constraint(equalTo: header.heightAnchor).isActive = true

    headerAdvertCollection.collectionView.widthAnchor.constraint(equalTo: header.widthAnchor, constant: -10).isActive = true

    headerAdvertCollection.setupCollectionView()

    return header
}

//MARK: Collection View Header Height
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {

    let advertisingView : CGFloat = 450
    let height : CGFloat = advertisingView

    return CGSize(width: collectionView.frame.width - 10, height: height)
}
答案

假设您有collectionView1和collectionView2,只需执行if检查即可在delegate / datasource方法中访问其中一个。

例如,在referenceSizeForHeaderInSection中:

  func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {

   if collectionView == collectionView1{
     let advertisingView : CGFloat = 450
     let height : CGFloat = advertisingView

     //supposing you want to use collectionView2
     return CGSize(width: collectionView2.frame.width - 10, height: height)
   }else{
     // HERE YOU CAN RETURN A VALUE FOR collectionView2
   }

}

注意:要使用collectionView 1和collectionView 2,您需要链接插座

以上是关于该类型的 CollectionView 不支持从调度程序线程以外的线程对其 SourceCollection 进行的更改。的主要内容,如果未能解决你的问题,请参考以下文章

WPF 不支持从调度程序线程以外的线程对其 SourceCollection 进行的更改

从函数返回的左值引用实际上是右值吗(从调用者的角度来看)?

我在哪里可以获得线程安全的 CollectionView?

如何跟踪 collectionView(由 FetchedResultsController 支持)单元格

显示collectionView的标头大小,基于该标头内部的集合视图动态内容不起作用

一个 collectionView 中的不同类型的单元格