I hope you can help me. I'm trying to make a side navigation like Facebook and Path, but did not want to use any library. I want to make it simple.

**Superior.h**
#import <UIKit/UIKit.h>
@interface Superior : UIViewController
@end
**Superior.m**
#import "Superior.h"
@interface Superior ()
@end
@implementation Superior
- (void)viewDidLoad
{
[super viewDidLoad];
self.view.backgroundColor = [UIColor orangeColor];
}
@end
**Menu.h**
@interface Menu : UIViewController <UITableViewDataSource,UITableViewDelegate>
@property (strong,nonatomic) Superior *vcSuperior;
@property (strong, nonatomic) IBOutlet UITableView *tabla;
@end
**Menu.m**
- (void)viewDidLoad {
[super viewDidLoad];
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:[NSBundle mainBundle]];
vcSuperior = [storyboard instantiateViewControllerWithIdentifier:@"superior"];
[self.tabla addSubview:vcSuperior.navigationController.view];
}
My problem is I can not add the NavigationController above the table
What am I doing wrong?