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];
???
You display a Modal view:
The transition animation is set on the viewcontroller that you are going to display.
As @deanWombourne stated below, why don't you wan't to use the Navigation controller? If you are pushing viewcontrollers then the navigation controller is the way to go.
If you don't want the navigationbar you can just hide it and pop the view controller your self:
Are you looking for this maybe?
You could use a UINavigationController and push it, and hide the navigationbar.