iphone - NSString initWithBytes isNotEqualTo error -
I am using soap request in my application and using initWithBytes to convert nISTIERTAD to NSMutableData recovered I am doing
NSString * TheXML = [[NSString alloc] initWithBytes: [webData mutableBytes] Length: [webData Length] Encoding: NSUTF8StringEncoding]; When I am running the app on the simulator, everything works fine but passes error on the iPhone above the code:
'NSInvalidArgumentException' , Reason: '*** - [NSCFString isNotEqualTo:]: Unfolded selector Example 0x16b7e0'
/ Blockquote>There is no code that contains 'isNotEqualTo' and there is no problem on every request .
Thank you in advance
you have tried:
NSString * theXML = [[NSString alloc] initWithData: WebData encoding: NSUTF8StringEncoding]; Before we can cut many calls to worry before digging, one of these can be troublesome.
Comments
Post a Comment