i've just started to write an application and i want to write it without navigation controller thereis going to be some viewController EX: aviewController , bviewController ...
Is it possible to push to b class's view controller (bviewController) from aViewController wiyhout using navigation controller ?
With otherwords ,
are there any different option for this code :
[self.navigationController pushViewController:self.bViewController animated:YES];
???