This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I am loading some values in UItableview from an array of dictionary values. I then alter the dictionary in the array by adding one more key value object as below NSMutableDictionary *rowDict = [tableList objectAtIndex:arrayindex]; [rowDict setObject:@"download successfull" forKey:@"downloadstatus"]; but after this when I try retrieveing value from dictionary in [...] read more