Inside cellForRowAtIndexPath I’m calling a multidimensional array like this:
Guide* guideColumnOne = [[multiArraysOfGuides objectAtIndex:0] objectAtIndex:indexPath.row];
The problem is it crashes with a EXC_BREAKPOINT error.
The guide is set like this in another method:
multiArraysOfGuides = [self seperateGuides:[appDelegate getGuideList] intoArrays:3];
The seperateGuides works as I can check the value and it is correct in the same method as it is created.
Any ideas what the problem could be?
deanWonbourne gave the answer in the comments.
I had to retain multiArraysOfGuides, to fix the problem.