Add UINavigationController to UIViewController using Interface Builder
As my question looks simple to all the readers but it's making me mad because 开发者_开发知识库I have never used Interface builder till now. Through coding I am able to achieve it but by using IB i am not.
Here is how i linked.These how I am showing the viewcontroller
JBRSettingsRootViewController *settingController = [[JBRSettingsRootViewController alloc]init];
[self presentModalViewController:settingController animated:NO];
[settingController release];
精彩评论