Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question
Try deriving your own class from NSMutableArray and see when dealloc is getting called in this derived class. – ESoft Nov 14 '12 at 12:57
thank ESoft. Will try it right now – Louis Shraga Nov 14 '12 at 14:46
It's difficult to derive from NSMutableArray (NSArray is a class cluster). It might be easier to set an associated object and observe its destruction. – Nikolai Ruhe Nov 14 '12 at 14:53

1 Answer

The viewsarray instance variable is strong (by default) and so cannot be released automatically. Memory management (by ARC) is identical in the simulator and on the device. Your bug is elsewhere.

share|improve this answer
thanks, but this is a comment rather than an answer – Louis Shraga Nov 14 '12 at 12:46
@LouisShraga No, it's an answer to your question "Is ARC behaving differently?". – Nikolai Ruhe Nov 14 '12 at 13:33
cmon, obviously my question is not about ARC but about my bug. "Is ARC behaving differently" is a thought, an idea. "What is different" is the question. If I just wanted to know if ARC behaves different on device I would have a short question asking just that... And that would not even be a valid question on SO... Some common sense, please – Louis Shraga Nov 14 '12 at 14:44
In your question is no hint to a possible reason for your bug. That's what I tried to make clear with my answer. – Nikolai Ruhe Nov 14 '12 at 14:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.