I'm beginner in ios. I developing a call with JSON for access a data and insert after on UITableView. In this point on my code
NSDictionary * dict = [[CJSONDeserializer deserializer ] deserialize:jsonData error:&error];
When compiling I obtained this error
2013-02-07 15:49:48.078 comercMobil[12933:c07] +[CJSONScanner scannerWithData:]: unrecognized selector sent to class 0xe7b8 2013-02-07 15:49:48.080 comercMobil[12933:c07] Exception +[CJSONScanner scannerWithData:]: unrecognized selector sent to class 0xe7b8
any suggestions? thanks for all
scannerWithDatapassing a "this" pointer that was a CJSONScanner object. And CJSONScanner does not implementscannerWithData. Find out where in your code you're invokingscannerWithData. (And, as others said, this is a runtime error, not a compile error.)