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

How should I add CIFilter's outputImage to NSMutableArray? Now I do it like that:

[myArray addObject:[myFilter valueForKey:@"outputImage"]];

But later when I try to use it all stored images, that before storing were different, are same as the last one that was added to array. Even when doing like that:

if ([myArray lastObject] == [myArray objectAtIndex:myArray.count - 5]) {
    NSLog(@"equal");
}

I get equal in my console. I have tried doing like this:

[myArray addObject:[[myFilter valueForKey:@"outputImage"] copy]];

but the result is the same.

share|improve this question
are you sure [myFilter valueForKey:@"outputImage"] returns a valid object? – Anoop Vaidya Jan 17 at 14:33
Yes. It returns CIImage that I later draw to screen and everything is OK, only that even object earlier stored to array gets identical to the last added object – hockeyman Jan 17 at 14:35
check using breakpoint, might be you are executing same method twice or some global variable is there, that you are referring and adding in array. – Anoop Vaidya Jan 17 at 14:38
Tried that too. That method where I add object to array is executed once after every mouseDown event. Array's object's count is good. All objects in array are valid. Only thing is wrong that the objects that are stored in array are being changed after adding every new object. Filter values are changed before adding new object to array. But why then array's object's are being changed too? – hockeyman Jan 17 at 14:49

closed as too localized by Anoop Vaidya, Ash Burlaczenko, Jeffrey, PsychoDad, Jarrod Roberson Jan 17 at 17:45

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.