Hi,
I have a set of classes that were created by www.sudzc.com (awesome WDSL web service proxy creation tool for iPhone/Flex/Javascript).
When I run the CMD+SHIFT+A to check for memory leaks I get the following message:
Object with +0 retain counts returned to caller where a +1 (owning) retain count is expected
Here is the method that it is returning that message for:
// Static method for initializing from a node.
+ (id) newWithNode: (CXMLNode*) node
{
return (id)[[[SoapObject alloc] initWithNode: node] autorelease];
}
I don't want to message with this code and it will need to be regenerated many times through the project, as the web services change and I need to update the proxy classes.
Any ideas?
Thanks in advance.
Jason