Ячейки представления коллекции не отображаются - ни один из вызываемых методов делегата [update: представление собрания не равен nil ??] - PullRequest
0 голосов
/ 31 октября 2018

[обновление - по каким-то причинам представление коллекции равно нулю ...]

Ни один из методов делегата представления коллекции (cellforitemat, numberofitemsinsection, sizeforitem и т. Д.) По какой-либо причине не вызывается вообще. Я установил источник данных и делегата. Я пробовал это в интерфейсе и загрузчик. Я что-то упустил ??

в .ч:

@interface ViewController : UIViewController<UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout>

@property (nonatomic, strong) NSArray *workoutList;

в .m (workoutlist.count равен 3 в операторе печати в VDL, но не выполняется в другом месте):

@implementation ViewController

- (void)viewDidLoad {
  [super viewDidLoad];

self.workoutCV.backgroundColor = [UIColor blackColor];
self.view.backgroundColor = [UIColor blackColor];

self.workoutCV.delegate = self;
self.workoutCV.dataSource = self;

NSLog(@"here %lu", (unsigned long)self.workoutList.count);


}

- (NSInteger)collectionView:(UICollectionView *)collectionView 
numberOfItemsInSection:(NSInteger)section {
NSLog(@"and here %lu", (unsigned long)self.workoutList.count);
return self.workoutList.count;

}

- (nonnull __kindof UICollectionViewCell *)collectionView:(nonnull UICollectionView *)collectionView cellForItemAtIndexPath:(nonnull NSIndexPath *)indexPath {

static NSString * const cellId = @"HomeCell";

HomeMenuCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellId forIndexPath:indexPath];

return cell;

}

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {

return CGSizeMake(CGRectGetWidth(collectionView.frame), CGRectGetHeight(collectionView.frame) / self.workoutList.count);

}

- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section {

return 0;

}

- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section {

return 0;

}

Мне нужен другой Viewcontroller (HomeController), чтобы добраться до этого нового контроллера. Это код из .m HomeController:

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {

ViewController *nextVC = [[ViewController alloc] init];

nextVC.workoutList = @[@"Squats", @"Stiff Leg DL", @"Abs"];

[self.navigationController pushViewController:nextVC animated:true];

}

Он запускает команду nextVC fine и print, но ячейки не отображаются и операторы print не запускаются ни одним из методов делегата представления коллекции

...