Hi all,
i am using soap request in my application and using initWithBytes to convert the retrieved NSMutableData to NSString.
NSString *theXML = [[NSString alloc] initWithBytes: [webData mutableBytes] length:[webData length] encoding:NSUTF8StringEncoding];
while i am running the app on the simulator everything works fine. but at the iPhone above code quits with the error :
'NSInvalidArgumentException', reason: '*** -[NSCFString isNotEqualTo:]: unrecognized selector sent to instance 0x16b7e0'
there is no code that includes 'isNotEqualTo' and the problem does not occure at every request.
Thanks in advance