In xCode, writing an iPhone app, should I NOT put code after/while flipping a view?
I seem to get random crashes....
{
FlipsideViewController *controller = [[FlipsideViewController alloc] initWithNibName:@"FlipsideView" bundle:nil];
controller.delegate = self;
controller.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:controller animated:YES];
[controller release];
////////////////// Should I not put any code here???
// Code that takes 0.0001 secs to run? Or 0.1 secs? Or 1-2 secs?
}
or when flipping back:
{
[self.delegate flipsideViewControllerDidFinish:self];
////////////////// Should I not put any code here???
// Code that takes 0.0001 secs to run? Or 0.1 secs? Or 1-2 secs?
}