My application is crashing when i tried to push the view controller with ios 6, it seems to be working fine in ios 5. Crash details are as follows
0x17aebd0 CA::Transaction::ensure crash.

Thanks in advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I found the solution, this is because of setting same background view to the two different tableviews, i have fixed this issue by setting different background views to the tableviews
UIView *lView=[[UIView alloc]init];
[self.mTableView setBackgroundView:lView];
[lView release];
lView=nil;
lView=[[UIView alloc]init];
[self.mTableView2 setBackgroundView:lView];
[lView release];
lView=nil;