Search code examples
objective-ciphoneios6core-animation

iphone application crash for CA :transaction


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.

enter image description here

Thanks in advance.


Solution

  • 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;