I\'m retrieving a key from an object that looks like this:
po obj { TypeID = 3; TypeName = Asset; }
The key value is being retrieved like t
You need to use the stringWithFormat function:
stringWithFormat
NSString *typeId = [NSString stringWithFormat:@"%@", [obj objectForKey:@"TypeID"]];
or stringValue:
stringValue
NSString *typeId = [[obj objectForKey:@"TypeID"] stringValue];