NSArray *arrAllAttributes = [[NSArray alloc]init];
arrAllAttributes = [app mtdAllCountry];
[arrAllAttributes retain];
for(int i = 0; i<[arrAllAttributes count]; i++)
{
    NSDictionary *dictTemp1 = [[NSDictionary alloc]init];

    NSString *strCountryName;
    NSString *strCountryValue;

    dictTemp1 = [arrAllAttributes objectAtIndex:i];
    strCountryName = [dictTemp1 objectForKey:@"country"];
    strCountryValue = [dictTemp1 objectForKey:@"country_ID"];
    [dictTemp1 retain];
    [arrCountries addObject:strCountryName];
    [arrCountryValues addObject:strCountryValue];
}
link|improve this question

instrument displays 100.0% and memory leak at that line. What does this mean? – Smriti Yadav Apr 4 '11 at 13:55
feedback

1 Answer

up vote 3 down vote accepted

Change these lines:

NSArray *arrAllAttributes = [[NSArray alloc]init];
arrAllAttributes = [app mtdAllCountry];
[arrAllAttributes retain];

To this:

NSArray *arrAllAttributes = [[app mtdAllCountry] retain];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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