UICollectionView会走返回行的方法但是不走初始化cell的方法,可能是
UICollectionViewFlowLayout * layout = [[UICollectionViewFlowLayout alloc] init];
写成了
UICollectionViewLayout * layout = [[UICollectionViewLayout alloc] init];
改成UICollectionViewFlowLayout就可以了
UICollectionView会走返回行的方法但是不走初始化cell的方法,可能是
UICollectionViewFlowLayout * layout = [[UICollectionViewFlowLayout alloc] init];
写成了
UICollectionViewLayout * layout = [[UICollectionViewLayout alloc] init];
改成UICollectionViewFlowLayout就可以了