if base class has it's own Navigation Controller Then You can write>>>>
[self.navigationController pushViewController:myViewController animated:YES];
//if your base class has only UIViewController then use::
MyView * MyViewController = [[MyView alloc] initWithNibName:@"MyView" bundle:nil];
UINavigationController * navMyView = [[UINavigationController alloc] initWithRootViewController:MyViewController];
navMyView.navigationItem.leftBarButtonItem = nil; //make nil if you want
// to use it in next View
[self presentModalViewController:navMyView animated:YES];
}
now,
from second View You can -- Push --Another view On that view
-(IBAction)btnNext_click {
secondView * secondViewController = [[secondView alloc]initWithNibName:@"secondView" bundle:nil];
[self.navigationController pushViewController:secondViewController animated:YES];
}