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 having a problem with sending special characters on iOS5 through sbjson to a web service. I get the error: > -[NSNull isEqualToString:]: unrecognized selector sent to instance I have tried to send the json string without special characters, and it went through without any problems. But as soon [...] read more
I have a method which returns an NSArray with points to be plotted. Following is the code for my method. - (NSArray *)pointsToPlot:(GraphView *)requester { NSMutableArray *points = [[NSSet alloc] init]; CGPoint midPoint; midPoint.x = self.graph.bounds.origin.x + self.graph.bounds.size.width / 2; midPoint.y = self.graph.bounds.origin.y + self.graph.bounds.size.height / 2; //Find points to [...] read more