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 an application with many views ( about 20 view ) these views are populated using (PresendModalViewController), and populated in a number of times through a loop ( let's say that 1,2,3,4,5...20 then 1,2,3,4....20 an so for) my question is , shall i dismiss the previous view each time i populated the next one?

share|improve this question

1 Answer

why not see this

for(int i=1;i<=20;i++)
{
   if(i>1)
    [self.navigationController dismissModelViewControllerAnimated:YES];
   [self.navigationController presentViewController:youobj animated:YES];
}
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.