Hi!

I have a strange issue. I get an object and check if it s a Dictionary, else I spit out an exception.

if ([obj isKindOfClass: [NSDictionary class]])
 {
   do someting;
 }
else if ([obj isKindOfClass: [DBSObject class]])
{
  do something els;
}
else
   Error!!!

However.... I get the error:
Unknown class of value: GSMutableDictionary


soo for some reason GSMutableDictionary is not isKindOfClass NSDictionary? and not a NSMutableDictionary either?

I bet this used to work...

Riccardo



Reply via email to