-3

I am stuck with this .Its is simply printing in my console when I navigate front and back .Can anyone tell why this is occurs.

In viewController1

-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{

   [self.navigationController pushViewController:viewCon2 animated:YES];

}
Jitendra
  • 5,055
  • 2
  • 22
  • 42
vivek
  • 3
  • 6
  • 5
    Did you search for it? Duplicate http://stackoverflow.com/questions/6809593/unbalanced-calls-to-begin-end-appearance-transitions-for-firstviewcontroller-0?rq=1 – Lithu T.V May 28 '13 at 11:44
  • Support your question with code that you have tried. – Amar May 28 '13 at 11:45

1 Answers1

1

You may be creating two viewcontrollers and pushing it on the same segue action/button press.

Lithu T.V
  • 19,955
  • 12
  • 56
  • 101