Instruments tools says this is a leak, any ideas?
I release the variable object by end of the for loop


and by the begininng of the method above this is how I set the variables obkect, thats autorelease;
NSMutableArray *variables = nil;
if (self.responseXMLData) {
variables = [NSMutableArray arrayWithCapacity:10];
//here is the all the code in the if statement which posted the screen shots
Make sure you are releasing
self.variablesproperty in your dealloc (or somewhere). Also, ensure that yourVariableclass is releasingvariableValuesproperty in theVariableclass’s dealloc.Same answer from related question: iPhone Leak on UITextfield text