Hi,
When i try to initialize an object inside the tableView:cellForRowAtIndexPath the simulator crashes. The code i used is
Claimant *tempClaimant = [[Claimant alloc] init];
tempClaimant = [appDelegate.arrRetailClaims objectAtIndex:0];
NSLog(@"Claimant Name is: %@",tempClaimant.ClaimantName);
Is there anything wrong with this. The same code works fine when written in a viewDidLoad method. Please help..
Thanks in advance, Shibin