How to access array fields in sudzc.com SOAP result?
问题 Sorry to perhaps ask stupid questions, but I'm still having issues with Objective-C syntax. So, I've got this SOAP response from my sudzc.com generated code. It should contain a SQL SELECT result with veh_id and version as columns. What I get as a response object is a NSMutableArray, NSMutableArray* soapArray = (NSMutableArray*)value; so I walk through it: unsigned count = [soapArray count]; while (count--) { id myobj = [soapArray objectAtIndex:count]; NSLog(@"myobj: %@", myobj); } What I get