Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

enter image description here

**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?

share|improve this question
Someone can help me please? – dpbataller Oct 19 '12 at 6:28

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.