guys
I am creating application in iOs 5 using storyBoard. StoryBoard is grete thing for easy navigation.But I am facing some problem in coding with iOs 5. this is the problem..
First i create a new project in iOs 5 using wit storyboard and i create three screen in that project. and I also used Navigation bar so it work fine.
In that application in first screen i put one button and same in rest of two screen. now successful in connection in forward direction using segues and in that selecting push.
Now i want to go back from third screen to second screen and second to first screen without using navigation bar.
so i use same for go back as i use to go forward (segues push option) but when i realice that this will add in stack all time but not popping anytime so i use below code for that but still not working .
fistClass *fc =[[fistClass alloc]init];
[self.navigationController popToViewController:fc animated:YES];
this is also not working.. pls help Thanks in Advance