I am writing an app that does not utilize a navigationController - there is only one area that requires a UITable.
However, now I am hitting a roadblock when I go to load in that (table) view, with a method such as:
searchViewController = [[SearchViewController alloc]
initWithNibName:@"SearchViewController" bundle:nil];
[self.view addSubview:searchViewController.view];
Do I need to load the method (below) into my AppDelegate?
UINavigationController *navigationController;
And then, once I do that, can I call that TableView in the same way? Or do I need to use another method, such as the one below:
[window addSubview:[navigationController view]];
Any help is appreciated!