I am using Xcode 4.3.1. I have created the UI using Storyboard which has many View Controllers.
Issue
In my app i am usin
You need to create string object in SecondViewController and set Property(nonatomic,retain) and synthesize it and after below code add when you push controller.
SecondViewController *objSecondViewController=[[SecondViewController alloc]
initWithNibName:@"SecondViewController" bundle:nil];
objSecondViewController.strtitle=@"Your data";
[self.navigationController pushViewController:objSecondViewController animated:YES];
[objSecondViewController release];