错误信号 SIGABRT NSInvalidArgumentException',原因:'UICollectionView 必须使用非零布局参数初始化'。
当 UITableViewCell 被按下时,它应该显示 UICollectionView
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UIViewController *viewController;
switch (indexPath.row) {
case IMAGE:
viewController = [[[CollectionViewController alloc] init] autorelease];
[self.CollectionViewController registerClass:[UICollectionViewCell class]forCellWithReuseIdentifier:@"Cell"];
case PROCEDURAL:
viewController = [[[ProceduralExampleViewController alloc] init] autorelease];
break;
default:
viewController = [[[UIViewController alloc] init] autorelease];
}
[self.navigationController pushViewController:viewController animated:YES];
}
使用故事板文件进行集合视图 segue。
如何解决这个错误UICollectionView must be initialized with a non-nil layout parameter
感谢帮助。