I have the following code in .m code
@implementation MyGameController
{
NSMutableArray* viewsarray;
}
I am initializing it this way
- (void)viewDidLoad
{
viewsarray = [[NSMutableArray alloc] init];
for (int i=0; i < TOTAL_ITEMS; i++)
{
ItemController* iv = [[ItemController alloc] initWithNibName:@"ItemPadXib" bundle:nil];
[viewsarray addObject:iv];
}
}
When I check at the end of this function - the array is intact and contains all my items. However, later it gets freed ( I think ) and viewsarray is set to nil.
I know this since later i try to access it like this
- (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index reusingView:(UIView *)view
{
ItemController* iv1 = [viewsarray objectAtIndex:index];
....
}
When i set a bp in this function - the viewsarray is nil
I tried to declare the viewsarray as a property but the behavior is the same
One important thing - on Simulator it works just fine. What is different ? Is ARC behaving differently ?
NSMutableArray(NSArrayis a class cluster). It might be easier to set an associated object and observe its destruction. – Nikolai Ruhe Nov 14 '12 at 14:53