I have 3 controllers. I am using push and pop method to change the controllers.
[self.navigationController pushViewController:product_subcatagory animated:YES];
[self.navigationController popViewControllerAnimated:YES];
The issue I am getting while i am continue doing push and pop operation for 8 to 10 minutes as it responding slow animation and at one step is getting crashed. So what could be the reason for slow animation for push-pop controller operation.
Below as Example I have 3 class A,B,C. Then following push view controller and pop view controller operation i am performing.
A->B->C It has three possibilities 1. B->A 2.C->B->A 3.C->B
Thanks in Advance.