Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have ViewCtrl1, and StartBtn:

    -(IBAction)startbtn
{

ViewCtrl2 *vc2 = [[ViewCtrl2 alloc]init];
[self presentModalViewController:vc2 animated:YES];

}

I have also ViewCtrl2, UISegmentedControl, and ExitBtn:

 - (IBAction)exitIt {

    [self dismissModalViewControllerAnimated:YES];
}

If in ViewCtrl2 i select segment 2, or 3. When I press ExitBtn, will show ViewCtrl1, and if I press StartBtn from ViewCtrl1, my ViewCtrl2 shows default selected segment, not changes that i made recently. How can i fix it?

share|improve this question

1 Answer

You creating new vc2 each time and of course it shows default values. Initialise it once and reuse.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.