サイドメニュー (facebook など) とこのメニューが左側に開くアプリケーションを 1 つ作成します。
私は xib ファイルを使用してこのアプリを作成したいと考えており、1 つのプロジェクトから支援しています。そのプロジェクトにはUIStoryBoardが存在し、このコードに問題があります:
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
self.leftVC = (LeftVC*)[storyboard instantiateViewControllerWithIdentifier:@"LeftVC"];;
[self.navigationController.view.superview insertSubview:self.leftVC.view belowSubview:self.navigationController.view];
ストーリーボードの代わりに xib ファイルを使用したい。(私のxibファイルは: LeftVC.xib)