unrecognized selector sent to instance 0x8c9a6d0

后端 未结 4 1039
你的背包
你的背包 2020-12-20 15:20

Can anyone tell me what is going on in this error code

[UIViewController collectionView:numberOfItemsInSection:]: unrecognized selector sent to instance 0x8c         


        
4条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-20 16:04

    also it could be you have forgotten delegate methods after class name

    class YourClassName: UIViewController, UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout{
    }
    

提交回复
热议问题