ストーリーボードの前の iOS では、ニブを使用し、次のコードを使用して UIViewControllers ビューを表示しました。ストーリーボードでこれを行う方法を理解しようとしています。initWithNib を呼び出すとクラッシュします。これを修正する方法に関するすべての提案を受け入れます。前もって感謝します。
folderCollectionView = [[FolderCollectionViewController alloc] initWithNibName:@"FolderCollectionViewController" bundle:nil];
folderView = [folderCollectionView view];
[folderView setFrame:CGRectMake([[self view] bounds].origin.x, [[self view] bounds].origin.y, [[self view] bounds].size.width, [[self view] bounds].size.height)];
folderCollectionView.delegate = self;
[[self view] insertSubview:folderView atIndex:1];
[[self view] bringSubviewToFront:folderView];
[folderView setBackgroundColor:[UIColor colorWithRed:0.0f green:0.0f blue:0.0f alpha:0.0f]];
folderView.alpha = 0.0;
[UIView animateWithDuration:1.2f
delay:0.0f
options: UIViewAnimationCurveEaseIn
animations:^{
folderView.alpha = 1.0;
}completion:nil];