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 have a plist file that contains array of dictionaries, and I'm trying to show in console the elements of the dictionnaries... here is my code: NSString *path = [[NSBundle mainBundle] pathForResource:@"validrep" ofType:@"plist"]; descArray = [[NSMutableArray alloc] init]; NSString *key = [NSString stringWithFormat:@"test %i",i+1]; NSMutableArray *tabreponses = [[NSMutableArray arrayWithContentsOfFile:path] retain]; [...] read more
I use Stm32f103c8t6 processor and I want to make 1 second counter. Normaly I dont use tımer update ınterrupt and my counter counts correctly but when I add timer update ınterrupt in code my counter doesnt count correctly. So fast increment. And ı cant remove update interrupt flag (UIF) in [...] read more