I have a series of buttons placed horizontally (say 5 in number) on top in my first View Controller. When I click on one of the five buttons , another view from a different controller (say Second View Controller ) should appear.
SecondViewController *controller = [self.storyboard instantiateViewControllerWithIdentifier:@"SecondVC"];
[self.navigationController pushViewController:controller animated:YES];
But this covers entire First View. Is there a way so that my second view appears as a pop up with the series of buttons still visible and working?